{
  "type": "Program",
  "body": [
    {
      "type": "ImportDeclaration",
      "specifiers": [
        {
          "type": "ImportSpecifier",
          "local": {
            "type": "Identifier",
            "name": "Subscriber",
            "range": [
              9,
              19
            ],
            "loc": {
              "start": {
                "line": 1,
                "column": 9
              },
              "end": {
                "line": 1,
                "column": 19
              }
            }
          },
          "imported": {
            "type": "Identifier",
            "name": "Subscriber",
            "range": [
              9,
              19
            ],
            "loc": {
              "start": {
                "line": 1,
                "column": 9
              },
              "end": {
                "line": 1,
                "column": 19
              }
            }
          },
          "range": [
            9,
            19
          ],
          "loc": {
            "start": {
              "line": 1,
              "column": 9
            },
            "end": {
              "line": 1,
              "column": 19
            }
          }
        }
      ],
      "source": {
        "type": "Literal",
        "value": "../Subscriber",
        "raw": "'../Subscriber'",
        "range": [
          27,
          42
        ],
        "loc": {
          "start": {
            "line": 1,
            "column": 27
          },
          "end": {
            "line": 1,
            "column": 42
          }
        }
      },
      "range": [
        0,
        43
      ],
      "loc": {
        "start": {
          "line": 1,
          "column": 0
        },
        "end": {
          "line": 1,
          "column": 43
        }
      },
      "trailingComments": [
        {
          "type": "Block",
          "value": "*\n * Returns an Observable that skips all items emitted by the source Observable as long as a specified condition holds\n * true, but emits all further source items as soon as the condition becomes false.\n *\n * <img src=\"./img/skipWhile.png\" width=\"100%\">\n *\n * @param {Function} predicate - a function to test each item emitted from the source Observable.\n * @return {Observable<T>} an Observable that begins emitting items emitted by the source Observable when the\n * specified predicate becomes false.\n * @method skipWhile\n * @owner Observable\n ",
          "range": [
            44,
            595
          ],
          "loc": {
            "start": {
              "line": 2,
              "column": 0
            },
            "end": {
              "line": 13,
              "column": 3
            }
          }
        }
      ]
    },
    {
      "type": "ExportNamedDeclaration",
      "declaration": {
        "type": "FunctionDeclaration",
        "id": {
          "type": "Identifier",
          "name": "skipWhile",
          "range": [
            612,
            621
          ],
          "loc": {
            "start": {
              "line": 14,
              "column": 16
            },
            "end": {
              "line": 14,
              "column": 25
            }
          }
        },
        "params": [
          {
            "type": "Identifier",
            "name": "predicate",
            "range": [
              622,
              631
            ],
            "loc": {
              "start": {
                "line": 14,
                "column": 26
              },
              "end": {
                "line": 14,
                "column": 35
              }
            }
          }
        ],
        "body": {
          "type": "BlockStatement",
          "body": [
            {
              "type": "ReturnStatement",
              "argument": {
                "type": "CallExpression",
                "callee": {
                  "type": "MemberExpression",
                  "computed": false,
                  "object": {
                    "type": "ThisExpression",
                    "range": [
                      646,
                      650
                    ],
                    "loc": {
                      "start": {
                        "line": 15,
                        "column": 11
                      },
                      "end": {
                        "line": 15,
                        "column": 15
                      }
                    }
                  },
                  "property": {
                    "type": "Identifier",
                    "name": "lift",
                    "range": [
                      651,
                      655
                    ],
                    "loc": {
                      "start": {
                        "line": 15,
                        "column": 16
                      },
                      "end": {
                        "line": 15,
                        "column": 20
                      }
                    }
                  },
                  "range": [
                    646,
                    655
                  ],
                  "loc": {
                    "start": {
                      "line": 15,
                      "column": 11
                    },
                    "end": {
                      "line": 15,
                      "column": 20
                    }
                  }
                },
                "arguments": [
                  {
                    "type": "NewExpression",
                    "callee": {
                      "type": "Identifier",
                      "name": "SkipWhileOperator",
                      "range": [
                        660,
                        677
                      ],
                      "loc": {
                        "start": {
                          "line": 15,
                          "column": 25
                        },
                        "end": {
                          "line": 15,
                          "column": 42
                        }
                      }
                    },
                    "arguments": [
                      {
                        "type": "Identifier",
                        "name": "predicate",
                        "range": [
                          678,
                          687
                        ],
                        "loc": {
                          "start": {
                            "line": 15,
                            "column": 43
                          },
                          "end": {
                            "line": 15,
                            "column": 52
                          }
                        }
                      }
                    ],
                    "range": [
                      656,
                      688
                    ],
                    "loc": {
                      "start": {
                        "line": 15,
                        "column": 21
                      },
                      "end": {
                        "line": 15,
                        "column": 53
                      }
                    }
                  }
                ],
                "range": [
                  646,
                  689
                ],
                "loc": {
                  "start": {
                    "line": 15,
                    "column": 11
                  },
                  "end": {
                    "line": 15,
                    "column": 54
                  }
                }
              },
              "range": [
                639,
                690
              ],
              "loc": {
                "start": {
                  "line": 15,
                  "column": 4
                },
                "end": {
                  "line": 15,
                  "column": 55
                }
              }
            }
          ],
          "range": [
            633,
            692
          ],
          "loc": {
            "start": {
              "line": 14,
              "column": 37
            },
            "end": {
              "line": 16,
              "column": 1
            }
          }
        },
        "generator": false,
        "expression": false,
        "range": [
          603,
          692
        ],
        "loc": {
          "start": {
            "line": 14,
            "column": 7
          },
          "end": {
            "line": 16,
            "column": 1
          }
        },
        "leadingComments": [
          {
            "type": "Block",
            "value": "*\n * Returns an Observable that skips all items emitted by the source Observable as long as a specified condition holds\n * true, but emits all further source items as soon as the condition becomes false.\n *\n * <img src=\"./img/skipWhile.png\" width=\"100%\">\n *\n * @param {Function} predicate - a function to test each item emitted from the source Observable.\n * @return {Observable<T>} an Observable that begins emitting items emitted by the source Observable when the\n * specified predicate becomes false.\n * @method skipWhile\n * @owner Observable\n ",
            "range": [
              44,
              595
            ],
            "loc": {
              "start": {
                "line": 2,
                "column": 0
              },
              "end": {
                "line": 13,
                "column": 3
              }
            }
          }
        ],
        "trailingComments": []
      },
      "specifiers": [],
      "source": null,
      "range": [
        596,
        692
      ],
      "loc": {
        "start": {
          "line": 14,
          "column": 0
        },
        "end": {
          "line": 16,
          "column": 1
        }
      },
      "leadingComments": [
        {
          "type": "Block",
          "value": "*\n * Returns an Observable that skips all items emitted by the source Observable as long as a specified condition holds\n * true, but emits all further source items as soon as the condition becomes false.\n *\n * <img src=\"./img/skipWhile.png\" width=\"100%\">\n *\n * @param {Function} predicate - a function to test each item emitted from the source Observable.\n * @return {Observable<T>} an Observable that begins emitting items emitted by the source Observable when the\n * specified predicate becomes false.\n * @method skipWhile\n * @owner Observable\n ",
          "range": [
            44,
            595
          ],
          "loc": {
            "start": {
              "line": 2,
              "column": 0
            },
            "end": {
              "line": 13,
              "column": 3
            }
          }
        }
      ]
    },
    {
      "type": "VariableDeclaration",
      "declarations": [
        {
          "type": "VariableDeclarator",
          "id": {
            "type": "Identifier",
            "name": "SkipWhileOperator",
            "range": [
              697,
              714
            ],
            "loc": {
              "start": {
                "line": 17,
                "column": 4
              },
              "end": {
                "line": 17,
                "column": 21
              }
            }
          },
          "init": {
            "type": "CallExpression",
            "callee": {
              "type": "FunctionExpression",
              "id": null,
              "params": [],
              "body": {
                "type": "BlockStatement",
                "body": [
                  {
                    "type": "FunctionDeclaration",
                    "id": {
                      "type": "Identifier",
                      "name": "SkipWhileOperator",
                      "range": [
                        745,
                        762
                      ],
                      "loc": {
                        "start": {
                          "line": 18,
                          "column": 13
                        },
                        "end": {
                          "line": 18,
                          "column": 30
                        }
                      }
                    },
                    "params": [
                      {
                        "type": "Identifier",
                        "name": "predicate",
                        "range": [
                          763,
                          772
                        ],
                        "loc": {
                          "start": {
                            "line": 18,
                            "column": 31
                          },
                          "end": {
                            "line": 18,
                            "column": 40
                          }
                        }
                      }
                    ],
                    "body": {
                      "type": "BlockStatement",
                      "body": [
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "AssignmentExpression",
                            "operator": "=",
                            "left": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  784,
                                  788
                                ],
                                "loc": {
                                  "start": {
                                    "line": 19,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 19,
                                    "column": 12
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "predicate",
                                "range": [
                                  789,
                                  798
                                ],
                                "loc": {
                                  "start": {
                                    "line": 19,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 19,
                                    "column": 22
                                  }
                                }
                              },
                              "range": [
                                784,
                                798
                              ],
                              "loc": {
                                "start": {
                                  "line": 19,
                                  "column": 8
                                },
                                "end": {
                                  "line": 19,
                                  "column": 22
                                }
                              }
                            },
                            "right": {
                              "type": "Identifier",
                              "name": "predicate",
                              "range": [
                                801,
                                810
                              ],
                              "loc": {
                                "start": {
                                  "line": 19,
                                  "column": 25
                                },
                                "end": {
                                  "line": 19,
                                  "column": 34
                                }
                              }
                            },
                            "range": [
                              784,
                              810
                            ],
                            "loc": {
                              "start": {
                                "line": 19,
                                "column": 8
                              },
                              "end": {
                                "line": 19,
                                "column": 34
                              }
                            }
                          },
                          "range": [
                            784,
                            811
                          ],
                          "loc": {
                            "start": {
                              "line": 19,
                              "column": 8
                            },
                            "end": {
                              "line": 19,
                              "column": 35
                            }
                          }
                        }
                      ],
                      "range": [
                        774,
                        817
                      ],
                      "loc": {
                        "start": {
                          "line": 18,
                          "column": 42
                        },
                        "end": {
                          "line": 20,
                          "column": 5
                        }
                      }
                    },
                    "generator": false,
                    "expression": false,
                    "range": [
                      736,
                      817
                    ],
                    "loc": {
                      "start": {
                        "line": 18,
                        "column": 4
                      },
                      "end": {
                        "line": 20,
                        "column": 5
                      }
                    }
                  },
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "AssignmentExpression",
                      "operator": "=",
                      "left": {
                        "type": "MemberExpression",
                        "computed": false,
                        "object": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "Identifier",
                            "name": "SkipWhileOperator",
                            "range": [
                              822,
                              839
                            ],
                            "loc": {
                              "start": {
                                "line": 21,
                                "column": 4
                              },
                              "end": {
                                "line": 21,
                                "column": 21
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "prototype",
                            "range": [
                              840,
                              849
                            ],
                            "loc": {
                              "start": {
                                "line": 21,
                                "column": 22
                              },
                              "end": {
                                "line": 21,
                                "column": 31
                              }
                            }
                          },
                          "range": [
                            822,
                            849
                          ],
                          "loc": {
                            "start": {
                              "line": 21,
                              "column": 4
                            },
                            "end": {
                              "line": 21,
                              "column": 31
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "call",
                          "range": [
                            850,
                            854
                          ],
                          "loc": {
                            "start": {
                              "line": 21,
                              "column": 32
                            },
                            "end": {
                              "line": 21,
                              "column": 36
                            }
                          }
                        },
                        "range": [
                          822,
                          854
                        ],
                        "loc": {
                          "start": {
                            "line": 21,
                            "column": 4
                          },
                          "end": {
                            "line": 21,
                            "column": 36
                          }
                        }
                      },
                      "right": {
                        "type": "FunctionExpression",
                        "id": null,
                        "params": [
                          {
                            "type": "Identifier",
                            "name": "subscriber",
                            "range": [
                              867,
                              877
                            ],
                            "loc": {
                              "start": {
                                "line": 21,
                                "column": 49
                              },
                              "end": {
                                "line": 21,
                                "column": 59
                              }
                            }
                          },
                          {
                            "type": "Identifier",
                            "name": "source",
                            "range": [
                              879,
                              885
                            ],
                            "loc": {
                              "start": {
                                "line": 21,
                                "column": 61
                              },
                              "end": {
                                "line": 21,
                                "column": 67
                              }
                            }
                          }
                        ],
                        "body": {
                          "type": "BlockStatement",
                          "body": [
                            {
                              "type": "ReturnStatement",
                              "argument": {
                                "type": "CallExpression",
                                "callee": {
                                  "type": "MemberExpression",
                                  "computed": false,
                                  "object": {
                                    "type": "Identifier",
                                    "name": "source",
                                    "range": [
                                      904,
                                      910
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 22,
                                        "column": 15
                                      },
                                      "end": {
                                        "line": 22,
                                        "column": 21
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "_subscribe",
                                    "range": [
                                      911,
                                      921
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 22,
                                        "column": 22
                                      },
                                      "end": {
                                        "line": 22,
                                        "column": 32
                                      }
                                    }
                                  },
                                  "range": [
                                    904,
                                    921
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 22,
                                      "column": 15
                                    },
                                    "end": {
                                      "line": 22,
                                      "column": 32
                                    }
                                  }
                                },
                                "arguments": [
                                  {
                                    "type": "NewExpression",
                                    "callee": {
                                      "type": "Identifier",
                                      "name": "SkipWhileSubscriber",
                                      "range": [
                                        926,
                                        945
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 22,
                                          "column": 37
                                        },
                                        "end": {
                                          "line": 22,
                                          "column": 56
                                        }
                                      }
                                    },
                                    "arguments": [
                                      {
                                        "type": "Identifier",
                                        "name": "subscriber",
                                        "range": [
                                          946,
                                          956
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 22,
                                            "column": 57
                                          },
                                          "end": {
                                            "line": 22,
                                            "column": 67
                                          }
                                        }
                                      },
                                      {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "ThisExpression",
                                          "range": [
                                            958,
                                            962
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 22,
                                              "column": 69
                                            },
                                            "end": {
                                              "line": 22,
                                              "column": 73
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "predicate",
                                          "range": [
                                            963,
                                            972
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 22,
                                              "column": 74
                                            },
                                            "end": {
                                              "line": 22,
                                              "column": 83
                                            }
                                          }
                                        },
                                        "range": [
                                          958,
                                          972
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 22,
                                            "column": 69
                                          },
                                          "end": {
                                            "line": 22,
                                            "column": 83
                                          }
                                        }
                                      }
                                    ],
                                    "range": [
                                      922,
                                      973
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 22,
                                        "column": 33
                                      },
                                      "end": {
                                        "line": 22,
                                        "column": 84
                                      }
                                    }
                                  }
                                ],
                                "range": [
                                  904,
                                  974
                                ],
                                "loc": {
                                  "start": {
                                    "line": 22,
                                    "column": 15
                                  },
                                  "end": {
                                    "line": 22,
                                    "column": 85
                                  }
                                }
                              },
                              "range": [
                                897,
                                975
                              ],
                              "loc": {
                                "start": {
                                  "line": 22,
                                  "column": 8
                                },
                                "end": {
                                  "line": 22,
                                  "column": 86
                                }
                              }
                            }
                          ],
                          "range": [
                            887,
                            981
                          ],
                          "loc": {
                            "start": {
                              "line": 21,
                              "column": 69
                            },
                            "end": {
                              "line": 23,
                              "column": 5
                            }
                          }
                        },
                        "generator": false,
                        "expression": false,
                        "range": [
                          857,
                          981
                        ],
                        "loc": {
                          "start": {
                            "line": 21,
                            "column": 39
                          },
                          "end": {
                            "line": 23,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        822,
                        981
                      ],
                      "loc": {
                        "start": {
                          "line": 21,
                          "column": 4
                        },
                        "end": {
                          "line": 23,
                          "column": 5
                        }
                      }
                    },
                    "range": [
                      822,
                      982
                    ],
                    "loc": {
                      "start": {
                        "line": 21,
                        "column": 4
                      },
                      "end": {
                        "line": 23,
                        "column": 6
                      }
                    }
                  },
                  {
                    "type": "ReturnStatement",
                    "argument": {
                      "type": "Identifier",
                      "name": "SkipWhileOperator",
                      "range": [
                        994,
                        1011
                      ],
                      "loc": {
                        "start": {
                          "line": 24,
                          "column": 11
                        },
                        "end": {
                          "line": 24,
                          "column": 28
                        }
                      }
                    },
                    "range": [
                      987,
                      1012
                    ],
                    "loc": {
                      "start": {
                        "line": 24,
                        "column": 4
                      },
                      "end": {
                        "line": 24,
                        "column": 29
                      }
                    }
                  }
                ],
                "range": [
                  730,
                  1014
                ],
                "loc": {
                  "start": {
                    "line": 17,
                    "column": 37
                  },
                  "end": {
                    "line": 25,
                    "column": 1
                  }
                }
              },
              "generator": false,
              "expression": false,
              "range": [
                718,
                1014
              ],
              "loc": {
                "start": {
                  "line": 17,
                  "column": 25
                },
                "end": {
                  "line": 25,
                  "column": 1
                }
              }
            },
            "arguments": [],
            "range": [
              718,
              1016
            ],
            "loc": {
              "start": {
                "line": 17,
                "column": 25
              },
              "end": {
                "line": 25,
                "column": 3
              }
            }
          },
          "range": [
            697,
            1017
          ],
          "loc": {
            "start": {
              "line": 17,
              "column": 4
            },
            "end": {
              "line": 25,
              "column": 4
            }
          }
        }
      ],
      "kind": "var",
      "range": [
        693,
        1018
      ],
      "loc": {
        "start": {
          "line": 17,
          "column": 0
        },
        "end": {
          "line": 25,
          "column": 5
        }
      },
      "trailingComments": [
        {
          "type": "Block",
          "value": "*\n * We need this JSDoc comment for affecting ESDoc.\n * @ignore\n * @extends {Ignored}\n ",
          "range": [
            1019,
            1110
          ],
          "loc": {
            "start": {
              "line": 26,
              "column": 0
            },
            "end": {
              "line": 30,
              "column": 3
            }
          }
        }
      ]
    },
    {
      "type": "VariableDeclaration",
      "declarations": [
        {
          "type": "VariableDeclarator",
          "id": {
            "type": "Identifier",
            "name": "SkipWhileSubscriber",
            "range": [
              1115,
              1134
            ],
            "loc": {
              "start": {
                "line": 31,
                "column": 4
              },
              "end": {
                "line": 31,
                "column": 23
              }
            }
          },
          "init": {
            "type": "CallExpression",
            "callee": {
              "type": "FunctionExpression",
              "id": null,
              "params": [
                {
                  "type": "Identifier",
                  "name": "_super",
                  "range": [
                    1148,
                    1154
                  ],
                  "loc": {
                    "start": {
                      "line": 31,
                      "column": 37
                    },
                    "end": {
                      "line": 31,
                      "column": 43
                    }
                  }
                }
              ],
              "body": {
                "type": "BlockStatement",
                "body": [
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "CallExpression",
                      "callee": {
                        "type": "Identifier",
                        "name": "__extends",
                        "range": [
                          1162,
                          1171
                        ],
                        "loc": {
                          "start": {
                            "line": 32,
                            "column": 4
                          },
                          "end": {
                            "line": 32,
                            "column": 13
                          }
                        }
                      },
                      "arguments": [
                        {
                          "type": "Identifier",
                          "name": "SkipWhileSubscriber",
                          "range": [
                            1172,
                            1191
                          ],
                          "loc": {
                            "start": {
                              "line": 32,
                              "column": 14
                            },
                            "end": {
                              "line": 32,
                              "column": 33
                            }
                          }
                        },
                        {
                          "type": "Identifier",
                          "name": "_super",
                          "range": [
                            1193,
                            1199
                          ],
                          "loc": {
                            "start": {
                              "line": 32,
                              "column": 35
                            },
                            "end": {
                              "line": 32,
                              "column": 41
                            }
                          }
                        }
                      ],
                      "range": [
                        1162,
                        1200
                      ],
                      "loc": {
                        "start": {
                          "line": 32,
                          "column": 4
                        },
                        "end": {
                          "line": 32,
                          "column": 42
                        }
                      }
                    },
                    "range": [
                      1162,
                      1201
                    ],
                    "loc": {
                      "start": {
                        "line": 32,
                        "column": 4
                      },
                      "end": {
                        "line": 32,
                        "column": 43
                      }
                    }
                  },
                  {
                    "type": "FunctionDeclaration",
                    "id": {
                      "type": "Identifier",
                      "name": "SkipWhileSubscriber",
                      "range": [
                        1215,
                        1234
                      ],
                      "loc": {
                        "start": {
                          "line": 33,
                          "column": 13
                        },
                        "end": {
                          "line": 33,
                          "column": 32
                        }
                      }
                    },
                    "params": [
                      {
                        "type": "Identifier",
                        "name": "destination",
                        "range": [
                          1235,
                          1246
                        ],
                        "loc": {
                          "start": {
                            "line": 33,
                            "column": 33
                          },
                          "end": {
                            "line": 33,
                            "column": 44
                          }
                        }
                      },
                      {
                        "type": "Identifier",
                        "name": "predicate",
                        "range": [
                          1248,
                          1257
                        ],
                        "loc": {
                          "start": {
                            "line": 33,
                            "column": 46
                          },
                          "end": {
                            "line": 33,
                            "column": 55
                          }
                        }
                      }
                    ],
                    "body": {
                      "type": "BlockStatement",
                      "body": [
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "CallExpression",
                            "callee": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "Identifier",
                                "name": "_super",
                                "range": [
                                  1269,
                                  1275
                                ],
                                "loc": {
                                  "start": {
                                    "line": 34,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 34,
                                    "column": 14
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "call",
                                "range": [
                                  1276,
                                  1280
                                ],
                                "loc": {
                                  "start": {
                                    "line": 34,
                                    "column": 15
                                  },
                                  "end": {
                                    "line": 34,
                                    "column": 19
                                  }
                                }
                              },
                              "range": [
                                1269,
                                1280
                              ],
                              "loc": {
                                "start": {
                                  "line": 34,
                                  "column": 8
                                },
                                "end": {
                                  "line": 34,
                                  "column": 19
                                }
                              }
                            },
                            "arguments": [
                              {
                                "type": "ThisExpression",
                                "range": [
                                  1281,
                                  1285
                                ],
                                "loc": {
                                  "start": {
                                    "line": 34,
                                    "column": 20
                                  },
                                  "end": {
                                    "line": 34,
                                    "column": 24
                                  }
                                }
                              },
                              {
                                "type": "Identifier",
                                "name": "destination",
                                "range": [
                                  1287,
                                  1298
                                ],
                                "loc": {
                                  "start": {
                                    "line": 34,
                                    "column": 26
                                  },
                                  "end": {
                                    "line": 34,
                                    "column": 37
                                  }
                                }
                              }
                            ],
                            "range": [
                              1269,
                              1299
                            ],
                            "loc": {
                              "start": {
                                "line": 34,
                                "column": 8
                              },
                              "end": {
                                "line": 34,
                                "column": 38
                              }
                            }
                          },
                          "range": [
                            1269,
                            1300
                          ],
                          "loc": {
                            "start": {
                              "line": 34,
                              "column": 8
                            },
                            "end": {
                              "line": 34,
                              "column": 39
                            }
                          }
                        },
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "AssignmentExpression",
                            "operator": "=",
                            "left": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  1309,
                                  1313
                                ],
                                "loc": {
                                  "start": {
                                    "line": 35,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 35,
                                    "column": 12
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "predicate",
                                "range": [
                                  1314,
                                  1323
                                ],
                                "loc": {
                                  "start": {
                                    "line": 35,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 35,
                                    "column": 22
                                  }
                                }
                              },
                              "range": [
                                1309,
                                1323
                              ],
                              "loc": {
                                "start": {
                                  "line": 35,
                                  "column": 8
                                },
                                "end": {
                                  "line": 35,
                                  "column": 22
                                }
                              }
                            },
                            "right": {
                              "type": "Identifier",
                              "name": "predicate",
                              "range": [
                                1326,
                                1335
                              ],
                              "loc": {
                                "start": {
                                  "line": 35,
                                  "column": 25
                                },
                                "end": {
                                  "line": 35,
                                  "column": 34
                                }
                              }
                            },
                            "range": [
                              1309,
                              1335
                            ],
                            "loc": {
                              "start": {
                                "line": 35,
                                "column": 8
                              },
                              "end": {
                                "line": 35,
                                "column": 34
                              }
                            }
                          },
                          "range": [
                            1309,
                            1336
                          ],
                          "loc": {
                            "start": {
                              "line": 35,
                              "column": 8
                            },
                            "end": {
                              "line": 35,
                              "column": 35
                            }
                          }
                        },
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "AssignmentExpression",
                            "operator": "=",
                            "left": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  1345,
                                  1349
                                ],
                                "loc": {
                                  "start": {
                                    "line": 36,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 36,
                                    "column": 12
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "skipping",
                                "range": [
                                  1350,
                                  1358
                                ],
                                "loc": {
                                  "start": {
                                    "line": 36,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 36,
                                    "column": 21
                                  }
                                }
                              },
                              "range": [
                                1345,
                                1358
                              ],
                              "loc": {
                                "start": {
                                  "line": 36,
                                  "column": 8
                                },
                                "end": {
                                  "line": 36,
                                  "column": 21
                                }
                              }
                            },
                            "right": {
                              "type": "Literal",
                              "value": true,
                              "raw": "true",
                              "range": [
                                1361,
                                1365
                              ],
                              "loc": {
                                "start": {
                                  "line": 36,
                                  "column": 24
                                },
                                "end": {
                                  "line": 36,
                                  "column": 28
                                }
                              }
                            },
                            "range": [
                              1345,
                              1365
                            ],
                            "loc": {
                              "start": {
                                "line": 36,
                                "column": 8
                              },
                              "end": {
                                "line": 36,
                                "column": 28
                              }
                            }
                          },
                          "range": [
                            1345,
                            1366
                          ],
                          "loc": {
                            "start": {
                              "line": 36,
                              "column": 8
                            },
                            "end": {
                              "line": 36,
                              "column": 29
                            }
                          }
                        },
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "AssignmentExpression",
                            "operator": "=",
                            "left": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  1375,
                                  1379
                                ],
                                "loc": {
                                  "start": {
                                    "line": 37,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 37,
                                    "column": 12
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "index",
                                "range": [
                                  1380,
                                  1385
                                ],
                                "loc": {
                                  "start": {
                                    "line": 37,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 37,
                                    "column": 18
                                  }
                                }
                              },
                              "range": [
                                1375,
                                1385
                              ],
                              "loc": {
                                "start": {
                                  "line": 37,
                                  "column": 8
                                },
                                "end": {
                                  "line": 37,
                                  "column": 18
                                }
                              }
                            },
                            "right": {
                              "type": "Literal",
                              "value": 0,
                              "raw": "0",
                              "range": [
                                1388,
                                1389
                              ],
                              "loc": {
                                "start": {
                                  "line": 37,
                                  "column": 21
                                },
                                "end": {
                                  "line": 37,
                                  "column": 22
                                }
                              }
                            },
                            "range": [
                              1375,
                              1389
                            ],
                            "loc": {
                              "start": {
                                "line": 37,
                                "column": 8
                              },
                              "end": {
                                "line": 37,
                                "column": 22
                              }
                            }
                          },
                          "range": [
                            1375,
                            1390
                          ],
                          "loc": {
                            "start": {
                              "line": 37,
                              "column": 8
                            },
                            "end": {
                              "line": 37,
                              "column": 23
                            }
                          }
                        }
                      ],
                      "range": [
                        1259,
                        1396
                      ],
                      "loc": {
                        "start": {
                          "line": 33,
                          "column": 57
                        },
                        "end": {
                          "line": 38,
                          "column": 5
                        }
                      }
                    },
                    "generator": false,
                    "expression": false,
                    "range": [
                      1206,
                      1396
                    ],
                    "loc": {
                      "start": {
                        "line": 33,
                        "column": 4
                      },
                      "end": {
                        "line": 38,
                        "column": 5
                      }
                    }
                  },
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "AssignmentExpression",
                      "operator": "=",
                      "left": {
                        "type": "MemberExpression",
                        "computed": false,
                        "object": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "Identifier",
                            "name": "SkipWhileSubscriber",
                            "range": [
                              1401,
                              1420
                            ],
                            "loc": {
                              "start": {
                                "line": 39,
                                "column": 4
                              },
                              "end": {
                                "line": 39,
                                "column": 23
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "prototype",
                            "range": [
                              1421,
                              1430
                            ],
                            "loc": {
                              "start": {
                                "line": 39,
                                "column": 24
                              },
                              "end": {
                                "line": 39,
                                "column": 33
                              }
                            }
                          },
                          "range": [
                            1401,
                            1430
                          ],
                          "loc": {
                            "start": {
                              "line": 39,
                              "column": 4
                            },
                            "end": {
                              "line": 39,
                              "column": 33
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "_next",
                          "range": [
                            1431,
                            1436
                          ],
                          "loc": {
                            "start": {
                              "line": 39,
                              "column": 34
                            },
                            "end": {
                              "line": 39,
                              "column": 39
                            }
                          }
                        },
                        "range": [
                          1401,
                          1436
                        ],
                        "loc": {
                          "start": {
                            "line": 39,
                            "column": 4
                          },
                          "end": {
                            "line": 39,
                            "column": 39
                          }
                        }
                      },
                      "right": {
                        "type": "FunctionExpression",
                        "id": null,
                        "params": [
                          {
                            "type": "Identifier",
                            "name": "value",
                            "range": [
                              1449,
                              1454
                            ],
                            "loc": {
                              "start": {
                                "line": 39,
                                "column": 52
                              },
                              "end": {
                                "line": 39,
                                "column": 57
                              }
                            }
                          }
                        ],
                        "body": {
                          "type": "BlockStatement",
                          "body": [
                            {
                              "type": "VariableDeclaration",
                              "declarations": [
                                {
                                  "type": "VariableDeclarator",
                                  "id": {
                                    "type": "Identifier",
                                    "name": "destination",
                                    "range": [
                                      1470,
                                      1481
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 40,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 40,
                                        "column": 23
                                      }
                                    }
                                  },
                                  "init": {
                                    "type": "MemberExpression",
                                    "computed": false,
                                    "object": {
                                      "type": "ThisExpression",
                                      "range": [
                                        1484,
                                        1488
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 40,
                                          "column": 26
                                        },
                                        "end": {
                                          "line": 40,
                                          "column": 30
                                        }
                                      }
                                    },
                                    "property": {
                                      "type": "Identifier",
                                      "name": "destination",
                                      "range": [
                                        1489,
                                        1500
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 40,
                                          "column": 31
                                        },
                                        "end": {
                                          "line": 40,
                                          "column": 42
                                        }
                                      }
                                    },
                                    "range": [
                                      1484,
                                      1500
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 40,
                                        "column": 26
                                      },
                                      "end": {
                                        "line": 40,
                                        "column": 42
                                      }
                                    }
                                  },
                                  "range": [
                                    1470,
                                    1500
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 40,
                                      "column": 12
                                    },
                                    "end": {
                                      "line": 40,
                                      "column": 42
                                    }
                                  }
                                }
                              ],
                              "kind": "var",
                              "range": [
                                1466,
                                1501
                              ],
                              "loc": {
                                "start": {
                                  "line": 40,
                                  "column": 8
                                },
                                "end": {
                                  "line": 40,
                                  "column": 43
                                }
                              }
                            },
                            {
                              "type": "IfStatement",
                              "test": {
                                "type": "MemberExpression",
                                "computed": false,
                                "object": {
                                  "type": "ThisExpression",
                                  "range": [
                                    1514,
                                    1518
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 41,
                                      "column": 12
                                    },
                                    "end": {
                                      "line": 41,
                                      "column": 16
                                    }
                                  }
                                },
                                "property": {
                                  "type": "Identifier",
                                  "name": "skipping",
                                  "range": [
                                    1519,
                                    1527
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 41,
                                      "column": 17
                                    },
                                    "end": {
                                      "line": 41,
                                      "column": 25
                                    }
                                  }
                                },
                                "range": [
                                  1514,
                                  1527
                                ],
                                "loc": {
                                  "start": {
                                    "line": 41,
                                    "column": 12
                                  },
                                  "end": {
                                    "line": 41,
                                    "column": 25
                                  }
                                }
                              },
                              "consequent": {
                                "type": "BlockStatement",
                                "body": [
                                  {
                                    "type": "ExpressionStatement",
                                    "expression": {
                                      "type": "CallExpression",
                                      "callee": {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "ThisExpression",
                                          "range": [
                                            1543,
                                            1547
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 42,
                                              "column": 12
                                            },
                                            "end": {
                                              "line": 42,
                                              "column": 16
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "tryCallPredicate",
                                          "range": [
                                            1548,
                                            1564
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 42,
                                              "column": 17
                                            },
                                            "end": {
                                              "line": 42,
                                              "column": 33
                                            }
                                          }
                                        },
                                        "range": [
                                          1543,
                                          1564
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 42,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 42,
                                            "column": 33
                                          }
                                        }
                                      },
                                      "arguments": [
                                        {
                                          "type": "Identifier",
                                          "name": "value",
                                          "range": [
                                            1565,
                                            1570
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 42,
                                              "column": 34
                                            },
                                            "end": {
                                              "line": 42,
                                              "column": 39
                                            }
                                          }
                                        }
                                      ],
                                      "range": [
                                        1543,
                                        1571
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 42,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 42,
                                          "column": 40
                                        }
                                      }
                                    },
                                    "range": [
                                      1543,
                                      1572
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 42,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 42,
                                        "column": 41
                                      }
                                    }
                                  }
                                ],
                                "range": [
                                  1529,
                                  1582
                                ],
                                "loc": {
                                  "start": {
                                    "line": 41,
                                    "column": 27
                                  },
                                  "end": {
                                    "line": 43,
                                    "column": 9
                                  }
                                }
                              },
                              "alternate": null,
                              "range": [
                                1510,
                                1582
                              ],
                              "loc": {
                                "start": {
                                  "line": 41,
                                  "column": 8
                                },
                                "end": {
                                  "line": 43,
                                  "column": 9
                                }
                              }
                            },
                            {
                              "type": "IfStatement",
                              "test": {
                                "type": "UnaryExpression",
                                "operator": "!",
                                "argument": {
                                  "type": "MemberExpression",
                                  "computed": false,
                                  "object": {
                                    "type": "ThisExpression",
                                    "range": [
                                      1596,
                                      1600
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 44,
                                        "column": 13
                                      },
                                      "end": {
                                        "line": 44,
                                        "column": 17
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "skipping",
                                    "range": [
                                      1601,
                                      1609
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 44,
                                        "column": 18
                                      },
                                      "end": {
                                        "line": 44,
                                        "column": 26
                                      }
                                    }
                                  },
                                  "range": [
                                    1596,
                                    1609
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 44,
                                      "column": 13
                                    },
                                    "end": {
                                      "line": 44,
                                      "column": 26
                                    }
                                  }
                                },
                                "prefix": true,
                                "range": [
                                  1595,
                                  1609
                                ],
                                "loc": {
                                  "start": {
                                    "line": 44,
                                    "column": 12
                                  },
                                  "end": {
                                    "line": 44,
                                    "column": 26
                                  }
                                }
                              },
                              "consequent": {
                                "type": "BlockStatement",
                                "body": [
                                  {
                                    "type": "ExpressionStatement",
                                    "expression": {
                                      "type": "CallExpression",
                                      "callee": {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "Identifier",
                                          "name": "destination",
                                          "range": [
                                            1625,
                                            1636
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 45,
                                              "column": 12
                                            },
                                            "end": {
                                              "line": 45,
                                              "column": 23
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "next",
                                          "range": [
                                            1637,
                                            1641
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 45,
                                              "column": 24
                                            },
                                            "end": {
                                              "line": 45,
                                              "column": 28
                                            }
                                          }
                                        },
                                        "range": [
                                          1625,
                                          1641
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 45,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 45,
                                            "column": 28
                                          }
                                        }
                                      },
                                      "arguments": [
                                        {
                                          "type": "Identifier",
                                          "name": "value",
                                          "range": [
                                            1642,
                                            1647
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 45,
                                              "column": 29
                                            },
                                            "end": {
                                              "line": 45,
                                              "column": 34
                                            }
                                          }
                                        }
                                      ],
                                      "range": [
                                        1625,
                                        1648
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 45,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 45,
                                          "column": 35
                                        }
                                      }
                                    },
                                    "range": [
                                      1625,
                                      1649
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 45,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 45,
                                        "column": 36
                                      }
                                    }
                                  }
                                ],
                                "range": [
                                  1611,
                                  1659
                                ],
                                "loc": {
                                  "start": {
                                    "line": 44,
                                    "column": 28
                                  },
                                  "end": {
                                    "line": 46,
                                    "column": 9
                                  }
                                }
                              },
                              "alternate": null,
                              "range": [
                                1591,
                                1659
                              ],
                              "loc": {
                                "start": {
                                  "line": 44,
                                  "column": 8
                                },
                                "end": {
                                  "line": 46,
                                  "column": 9
                                }
                              }
                            }
                          ],
                          "range": [
                            1456,
                            1665
                          ],
                          "loc": {
                            "start": {
                              "line": 39,
                              "column": 59
                            },
                            "end": {
                              "line": 47,
                              "column": 5
                            }
                          }
                        },
                        "generator": false,
                        "expression": false,
                        "range": [
                          1439,
                          1665
                        ],
                        "loc": {
                          "start": {
                            "line": 39,
                            "column": 42
                          },
                          "end": {
                            "line": 47,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        1401,
                        1665
                      ],
                      "loc": {
                        "start": {
                          "line": 39,
                          "column": 4
                        },
                        "end": {
                          "line": 47,
                          "column": 5
                        }
                      }
                    },
                    "range": [
                      1401,
                      1666
                    ],
                    "loc": {
                      "start": {
                        "line": 39,
                        "column": 4
                      },
                      "end": {
                        "line": 47,
                        "column": 6
                      }
                    }
                  },
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "AssignmentExpression",
                      "operator": "=",
                      "left": {
                        "type": "MemberExpression",
                        "computed": false,
                        "object": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "Identifier",
                            "name": "SkipWhileSubscriber",
                            "range": [
                              1671,
                              1690
                            ],
                            "loc": {
                              "start": {
                                "line": 48,
                                "column": 4
                              },
                              "end": {
                                "line": 48,
                                "column": 23
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "prototype",
                            "range": [
                              1691,
                              1700
                            ],
                            "loc": {
                              "start": {
                                "line": 48,
                                "column": 24
                              },
                              "end": {
                                "line": 48,
                                "column": 33
                              }
                            }
                          },
                          "range": [
                            1671,
                            1700
                          ],
                          "loc": {
                            "start": {
                              "line": 48,
                              "column": 4
                            },
                            "end": {
                              "line": 48,
                              "column": 33
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "tryCallPredicate",
                          "range": [
                            1701,
                            1717
                          ],
                          "loc": {
                            "start": {
                              "line": 48,
                              "column": 34
                            },
                            "end": {
                              "line": 48,
                              "column": 50
                            }
                          }
                        },
                        "range": [
                          1671,
                          1717
                        ],
                        "loc": {
                          "start": {
                            "line": 48,
                            "column": 4
                          },
                          "end": {
                            "line": 48,
                            "column": 50
                          }
                        }
                      },
                      "right": {
                        "type": "FunctionExpression",
                        "id": null,
                        "params": [
                          {
                            "type": "Identifier",
                            "name": "value",
                            "range": [
                              1730,
                              1735
                            ],
                            "loc": {
                              "start": {
                                "line": 48,
                                "column": 63
                              },
                              "end": {
                                "line": 48,
                                "column": 68
                              }
                            }
                          }
                        ],
                        "body": {
                          "type": "BlockStatement",
                          "body": [
                            {
                              "type": "TryStatement",
                              "block": {
                                "type": "BlockStatement",
                                "body": [
                                  {
                                    "type": "VariableDeclaration",
                                    "declarations": [
                                      {
                                        "type": "VariableDeclarator",
                                        "id": {
                                          "type": "Identifier",
                                          "name": "result",
                                          "range": [
                                            1769,
                                            1775
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 50,
                                              "column": 16
                                            },
                                            "end": {
                                              "line": 50,
                                              "column": 22
                                            }
                                          }
                                        },
                                        "init": {
                                          "type": "CallExpression",
                                          "callee": {
                                            "type": "MemberExpression",
                                            "computed": false,
                                            "object": {
                                              "type": "ThisExpression",
                                              "range": [
                                                1778,
                                                1782
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 50,
                                                  "column": 25
                                                },
                                                "end": {
                                                  "line": 50,
                                                  "column": 29
                                                }
                                              }
                                            },
                                            "property": {
                                              "type": "Identifier",
                                              "name": "predicate",
                                              "range": [
                                                1783,
                                                1792
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 50,
                                                  "column": 30
                                                },
                                                "end": {
                                                  "line": 50,
                                                  "column": 39
                                                }
                                              }
                                            },
                                            "range": [
                                              1778,
                                              1792
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 50,
                                                "column": 25
                                              },
                                              "end": {
                                                "line": 50,
                                                "column": 39
                                              }
                                            }
                                          },
                                          "arguments": [
                                            {
                                              "type": "Identifier",
                                              "name": "value",
                                              "range": [
                                                1793,
                                                1798
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 50,
                                                  "column": 40
                                                },
                                                "end": {
                                                  "line": 50,
                                                  "column": 45
                                                }
                                              }
                                            },
                                            {
                                              "type": "UpdateExpression",
                                              "operator": "++",
                                              "argument": {
                                                "type": "MemberExpression",
                                                "computed": false,
                                                "object": {
                                                  "type": "ThisExpression",
                                                  "range": [
                                                    1800,
                                                    1804
                                                  ],
                                                  "loc": {
                                                    "start": {
                                                      "line": 50,
                                                      "column": 47
                                                    },
                                                    "end": {
                                                      "line": 50,
                                                      "column": 51
                                                    }
                                                  }
                                                },
                                                "property": {
                                                  "type": "Identifier",
                                                  "name": "index",
                                                  "range": [
                                                    1805,
                                                    1810
                                                  ],
                                                  "loc": {
                                                    "start": {
                                                      "line": 50,
                                                      "column": 52
                                                    },
                                                    "end": {
                                                      "line": 50,
                                                      "column": 57
                                                    }
                                                  }
                                                },
                                                "range": [
                                                  1800,
                                                  1810
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 50,
                                                    "column": 47
                                                  },
                                                  "end": {
                                                    "line": 50,
                                                    "column": 57
                                                  }
                                                }
                                              },
                                              "prefix": false,
                                              "range": [
                                                1800,
                                                1812
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 50,
                                                  "column": 47
                                                },
                                                "end": {
                                                  "line": 50,
                                                  "column": 59
                                                }
                                              }
                                            }
                                          ],
                                          "range": [
                                            1778,
                                            1813
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 50,
                                              "column": 25
                                            },
                                            "end": {
                                              "line": 50,
                                              "column": 60
                                            }
                                          }
                                        },
                                        "range": [
                                          1769,
                                          1813
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 50,
                                            "column": 16
                                          },
                                          "end": {
                                            "line": 50,
                                            "column": 60
                                          }
                                        }
                                      }
                                    ],
                                    "kind": "var",
                                    "range": [
                                      1765,
                                      1814
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 50,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 50,
                                        "column": 61
                                      }
                                    }
                                  },
                                  {
                                    "type": "ExpressionStatement",
                                    "expression": {
                                      "type": "AssignmentExpression",
                                      "operator": "=",
                                      "left": {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "ThisExpression",
                                          "range": [
                                            1827,
                                            1831
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 51,
                                              "column": 12
                                            },
                                            "end": {
                                              "line": 51,
                                              "column": 16
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "skipping",
                                          "range": [
                                            1832,
                                            1840
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 51,
                                              "column": 17
                                            },
                                            "end": {
                                              "line": 51,
                                              "column": 25
                                            }
                                          }
                                        },
                                        "range": [
                                          1827,
                                          1840
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 51,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 51,
                                            "column": 25
                                          }
                                        }
                                      },
                                      "right": {
                                        "type": "CallExpression",
                                        "callee": {
                                          "type": "Identifier",
                                          "name": "Boolean",
                                          "range": [
                                            1843,
                                            1850
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 51,
                                              "column": 28
                                            },
                                            "end": {
                                              "line": 51,
                                              "column": 35
                                            }
                                          }
                                        },
                                        "arguments": [
                                          {
                                            "type": "Identifier",
                                            "name": "result",
                                            "range": [
                                              1851,
                                              1857
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 51,
                                                "column": 36
                                              },
                                              "end": {
                                                "line": 51,
                                                "column": 42
                                              }
                                            }
                                          }
                                        ],
                                        "range": [
                                          1843,
                                          1858
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 51,
                                            "column": 28
                                          },
                                          "end": {
                                            "line": 51,
                                            "column": 43
                                          }
                                        }
                                      },
                                      "range": [
                                        1827,
                                        1858
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 51,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 51,
                                          "column": 43
                                        }
                                      }
                                    },
                                    "range": [
                                      1827,
                                      1859
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 51,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 51,
                                        "column": 44
                                      }
                                    }
                                  }
                                ],
                                "range": [
                                  1751,
                                  1869
                                ],
                                "loc": {
                                  "start": {
                                    "line": 49,
                                    "column": 12
                                  },
                                  "end": {
                                    "line": 52,
                                    "column": 9
                                  }
                                }
                              },
                              "handler": {
                                "type": "CatchClause",
                                "param": {
                                  "type": "Identifier",
                                  "name": "err",
                                  "range": [
                                    1885,
                                    1888
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 53,
                                      "column": 15
                                    },
                                    "end": {
                                      "line": 53,
                                      "column": 18
                                    }
                                  }
                                },
                                "body": {
                                  "type": "BlockStatement",
                                  "body": [
                                    {
                                      "type": "ExpressionStatement",
                                      "expression": {
                                        "type": "CallExpression",
                                        "callee": {
                                          "type": "MemberExpression",
                                          "computed": false,
                                          "object": {
                                            "type": "MemberExpression",
                                            "computed": false,
                                            "object": {
                                              "type": "ThisExpression",
                                              "range": [
                                                1904,
                                                1908
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 54,
                                                  "column": 12
                                                },
                                                "end": {
                                                  "line": 54,
                                                  "column": 16
                                                }
                                              }
                                            },
                                            "property": {
                                              "type": "Identifier",
                                              "name": "destination",
                                              "range": [
                                                1909,
                                                1920
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 54,
                                                  "column": 17
                                                },
                                                "end": {
                                                  "line": 54,
                                                  "column": 28
                                                }
                                              }
                                            },
                                            "range": [
                                              1904,
                                              1920
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 54,
                                                "column": 12
                                              },
                                              "end": {
                                                "line": 54,
                                                "column": 28
                                              }
                                            }
                                          },
                                          "property": {
                                            "type": "Identifier",
                                            "name": "error",
                                            "range": [
                                              1921,
                                              1926
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 54,
                                                "column": 29
                                              },
                                              "end": {
                                                "line": 54,
                                                "column": 34
                                              }
                                            }
                                          },
                                          "range": [
                                            1904,
                                            1926
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 54,
                                              "column": 12
                                            },
                                            "end": {
                                              "line": 54,
                                              "column": 34
                                            }
                                          }
                                        },
                                        "arguments": [
                                          {
                                            "type": "Identifier",
                                            "name": "err",
                                            "range": [
                                              1927,
                                              1930
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 54,
                                                "column": 35
                                              },
                                              "end": {
                                                "line": 54,
                                                "column": 38
                                              }
                                            }
                                          }
                                        ],
                                        "range": [
                                          1904,
                                          1931
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 54,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 54,
                                            "column": 39
                                          }
                                        }
                                      },
                                      "range": [
                                        1904,
                                        1932
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 54,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 54,
                                          "column": 40
                                        }
                                      }
                                    }
                                  ],
                                  "range": [
                                    1890,
                                    1942
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 53,
                                      "column": 20
                                    },
                                    "end": {
                                      "line": 55,
                                      "column": 9
                                    }
                                  }
                                },
                                "range": [
                                  1878,
                                  1942
                                ],
                                "loc": {
                                  "start": {
                                    "line": 53,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 55,
                                    "column": 9
                                  }
                                }
                              },
                              "finalizer": null,
                              "range": [
                                1747,
                                1942
                              ],
                              "loc": {
                                "start": {
                                  "line": 49,
                                  "column": 8
                                },
                                "end": {
                                  "line": 55,
                                  "column": 9
                                }
                              }
                            }
                          ],
                          "range": [
                            1737,
                            1948
                          ],
                          "loc": {
                            "start": {
                              "line": 48,
                              "column": 70
                            },
                            "end": {
                              "line": 56,
                              "column": 5
                            }
                          }
                        },
                        "generator": false,
                        "expression": false,
                        "range": [
                          1720,
                          1948
                        ],
                        "loc": {
                          "start": {
                            "line": 48,
                            "column": 53
                          },
                          "end": {
                            "line": 56,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        1671,
                        1948
                      ],
                      "loc": {
                        "start": {
                          "line": 48,
                          "column": 4
                        },
                        "end": {
                          "line": 56,
                          "column": 5
                        }
                      }
                    },
                    "range": [
                      1671,
                      1949
                    ],
                    "loc": {
                      "start": {
                        "line": 48,
                        "column": 4
                      },
                      "end": {
                        "line": 56,
                        "column": 6
                      }
                    }
                  },
                  {
                    "type": "ReturnStatement",
                    "argument": {
                      "type": "Identifier",
                      "name": "SkipWhileSubscriber",
                      "range": [
                        1961,
                        1980
                      ],
                      "loc": {
                        "start": {
                          "line": 57,
                          "column": 11
                        },
                        "end": {
                          "line": 57,
                          "column": 30
                        }
                      }
                    },
                    "range": [
                      1954,
                      1981
                    ],
                    "loc": {
                      "start": {
                        "line": 57,
                        "column": 4
                      },
                      "end": {
                        "line": 57,
                        "column": 31
                      }
                    }
                  }
                ],
                "range": [
                  1156,
                  1983
                ],
                "loc": {
                  "start": {
                    "line": 31,
                    "column": 45
                  },
                  "end": {
                    "line": 58,
                    "column": 1
                  }
                }
              },
              "generator": false,
              "expression": false,
              "range": [
                1138,
                1983
              ],
              "loc": {
                "start": {
                  "line": 31,
                  "column": 27
                },
                "end": {
                  "line": 58,
                  "column": 1
                }
              }
            },
            "arguments": [
              {
                "type": "Identifier",
                "name": "Subscriber",
                "range": [
                  1984,
                  1994
                ],
                "loc": {
                  "start": {
                    "line": 58,
                    "column": 2
                  },
                  "end": {
                    "line": 58,
                    "column": 12
                  }
                }
              }
            ],
            "range": [
              1138,
              1995
            ],
            "loc": {
              "start": {
                "line": 31,
                "column": 27
              },
              "end": {
                "line": 58,
                "column": 13
              }
            }
          },
          "range": [
            1115,
            1996
          ],
          "loc": {
            "start": {
              "line": 31,
              "column": 4
            },
            "end": {
              "line": 58,
              "column": 14
            }
          }
        }
      ],
      "kind": "var",
      "range": [
        1111,
        1997
      ],
      "loc": {
        "start": {
          "line": 31,
          "column": 0
        },
        "end": {
          "line": 58,
          "column": 15
        }
      },
      "leadingComments": [
        {
          "type": "Block",
          "value": "*\n * We need this JSDoc comment for affecting ESDoc.\n * @ignore\n * @extends {Ignored}\n ",
          "range": [
            1019,
            1110
          ],
          "loc": {
            "start": {
              "line": 26,
              "column": 0
            },
            "end": {
              "line": 30,
              "column": 3
            }
          }
        }
      ],
      "trailingComments": [
        {
          "type": "Line",
          "value": "# sourceMappingURL=skipWhile.js.map",
          "range": [
            1998,
            2035
          ],
          "loc": {
            "start": {
              "line": 59,
              "column": 0
            },
            "end": {
              "line": 59,
              "column": 37
            }
          }
        }
      ]
    }
  ],
  "sourceType": "module",
  "range": [
    0,
    1997
  ],
  "loc": {
    "start": {
      "line": 1,
      "column": 0
    },
    "end": {
      "line": 58,
      "column": 15
    }
  },
  "comments": [
    {
      "type": "Block",
      "value": "*\n * Returns an Observable that skips all items emitted by the source Observable as long as a specified condition holds\n * true, but emits all further source items as soon as the condition becomes false.\n *\n * <img src=\"./img/skipWhile.png\" width=\"100%\">\n *\n * @param {Function} predicate - a function to test each item emitted from the source Observable.\n * @return {Observable<T>} an Observable that begins emitting items emitted by the source Observable when the\n * specified predicate becomes false.\n * @method skipWhile\n * @owner Observable\n ",
      "range": [
        44,
        595
      ],
      "loc": {
        "start": {
          "line": 2,
          "column": 0
        },
        "end": {
          "line": 13,
          "column": 3
        }
      }
    },
    {
      "type": "Block",
      "value": "*\n * We need this JSDoc comment for affecting ESDoc.\n * @ignore\n * @extends {Ignored}\n ",
      "range": [
        1019,
        1110
      ],
      "loc": {
        "start": {
          "line": 26,
          "column": 0
        },
        "end": {
          "line": 30,
          "column": 3
        }
      }
    },
    {
      "type": "Line",
      "value": "# sourceMappingURL=skipWhile.js.map",
      "range": [
        1998,
        2035
      ],
      "loc": {
        "start": {
          "line": 59,
          "column": 0
        },
        "end": {
          "line": 59,
          "column": 37
        }
      }
    }
  ]
}