{
  "type": "Program",
  "body": [
    {
      "type": "ImportDeclaration",
      "specifiers": [
        {
          "type": "ImportSpecifier",
          "local": {
            "type": "Identifier",
            "name": "Subject",
            "range": [
              9,
              16
            ],
            "loc": {
              "start": {
                "line": 1,
                "column": 9
              },
              "end": {
                "line": 1,
                "column": 16
              }
            }
          },
          "imported": {
            "type": "Identifier",
            "name": "Subject",
            "range": [
              9,
              16
            ],
            "loc": {
              "start": {
                "line": 1,
                "column": 9
              },
              "end": {
                "line": 1,
                "column": 16
              }
            }
          },
          "range": [
            9,
            16
          ],
          "loc": {
            "start": {
              "line": 1,
              "column": 9
            },
            "end": {
              "line": 1,
              "column": 16
            }
          }
        }
      ],
      "source": {
        "type": "Literal",
        "value": "../Subject",
        "raw": "'../Subject'",
        "range": [
          24,
          36
        ],
        "loc": {
          "start": {
            "line": 1,
            "column": 24
          },
          "end": {
            "line": 1,
            "column": 36
          }
        }
      },
      "range": [
        0,
        37
      ],
      "loc": {
        "start": {
          "line": 1,
          "column": 0
        },
        "end": {
          "line": 1,
          "column": 37
        }
      }
    },
    {
      "type": "ImportDeclaration",
      "specifiers": [
        {
          "type": "ImportSpecifier",
          "local": {
            "type": "Identifier",
            "name": "OuterSubscriber",
            "range": [
              47,
              62
            ],
            "loc": {
              "start": {
                "line": 2,
                "column": 9
              },
              "end": {
                "line": 2,
                "column": 24
              }
            }
          },
          "imported": {
            "type": "Identifier",
            "name": "OuterSubscriber",
            "range": [
              47,
              62
            ],
            "loc": {
              "start": {
                "line": 2,
                "column": 9
              },
              "end": {
                "line": 2,
                "column": 24
              }
            }
          },
          "range": [
            47,
            62
          ],
          "loc": {
            "start": {
              "line": 2,
              "column": 9
            },
            "end": {
              "line": 2,
              "column": 24
            }
          }
        }
      ],
      "source": {
        "type": "Literal",
        "value": "../OuterSubscriber",
        "raw": "'../OuterSubscriber'",
        "range": [
          70,
          90
        ],
        "loc": {
          "start": {
            "line": 2,
            "column": 32
          },
          "end": {
            "line": 2,
            "column": 52
          }
        }
      },
      "range": [
        38,
        91
      ],
      "loc": {
        "start": {
          "line": 2,
          "column": 0
        },
        "end": {
          "line": 2,
          "column": 53
        }
      }
    },
    {
      "type": "ImportDeclaration",
      "specifiers": [
        {
          "type": "ImportSpecifier",
          "local": {
            "type": "Identifier",
            "name": "subscribeToResult",
            "range": [
              101,
              118
            ],
            "loc": {
              "start": {
                "line": 3,
                "column": 9
              },
              "end": {
                "line": 3,
                "column": 26
              }
            }
          },
          "imported": {
            "type": "Identifier",
            "name": "subscribeToResult",
            "range": [
              101,
              118
            ],
            "loc": {
              "start": {
                "line": 3,
                "column": 9
              },
              "end": {
                "line": 3,
                "column": 26
              }
            }
          },
          "range": [
            101,
            118
          ],
          "loc": {
            "start": {
              "line": 3,
              "column": 9
            },
            "end": {
              "line": 3,
              "column": 26
            }
          }
        }
      ],
      "source": {
        "type": "Literal",
        "value": "../util/subscribeToResult",
        "raw": "'../util/subscribeToResult'",
        "range": [
          126,
          153
        ],
        "loc": {
          "start": {
            "line": 3,
            "column": 34
          },
          "end": {
            "line": 3,
            "column": 61
          }
        }
      },
      "range": [
        92,
        154
      ],
      "loc": {
        "start": {
          "line": 3,
          "column": 0
        },
        "end": {
          "line": 3,
          "column": 62
        }
      },
      "trailingComments": [
        {
          "type": "Block",
          "value": "*\n * Branch out the source Observable values as a nested Observable whenever\n * `windowBoundaries` emits.\n *\n * <span class=\"informal\">It's like {@link buffer}, but emits a nested Observable\n * instead of an array.</span>\n *\n * <img src=\"./img/window.png\" width=\"100%\">\n *\n * Returns an Observable that emits windows of items it collects from the source\n * Observable. The output Observable emits connected, non-overlapping\n * windows. It emits the current window and opens a new one whenever the\n * Observable `windowBoundaries` emits an item. Because each window is an\n * Observable, the output is a higher-order Observable.\n *\n * @example <caption>In every window of 1 second each, emit at most 2 click events</caption>\n * var clicks = Rx.Observable.fromEvent(document, 'click');\n * var interval = Rx.Observable.interval(1000);\n * var result = clicks.window(interval)\n *   .map(win => win.take(2)) // each window has at most 2 emissions\n *   .mergeAll(); // flatten the Observable-of-Observables\n * result.subscribe(x => console.log(x));\n *\n * @see {@link windowCount}\n * @see {@link windowTime}\n * @see {@link windowToggle}\n * @see {@link windowWhen}\n * @see {@link buffer}\n *\n * @param {Observable<any>} windowBoundaries An Observable that completes the\n * previous window and starts a new window.\n * @return {Observable<Observable<T>>} An Observable of windows, which are\n * Observables emitting values of the source Observable.\n * @method window\n * @owner Observable\n ",
          "range": [
            155,
            1634
          ],
          "loc": {
            "start": {
              "line": 4,
              "column": 0
            },
            "end": {
              "line": 39,
              "column": 3
            }
          }
        }
      ]
    },
    {
      "type": "ExportNamedDeclaration",
      "declaration": {
        "type": "FunctionDeclaration",
        "id": {
          "type": "Identifier",
          "name": "window",
          "range": [
            1651,
            1657
          ],
          "loc": {
            "start": {
              "line": 40,
              "column": 16
            },
            "end": {
              "line": 40,
              "column": 22
            }
          }
        },
        "params": [
          {
            "type": "Identifier",
            "name": "windowBoundaries",
            "range": [
              1658,
              1674
            ],
            "loc": {
              "start": {
                "line": 40,
                "column": 23
              },
              "end": {
                "line": 40,
                "column": 39
              }
            }
          }
        ],
        "body": {
          "type": "BlockStatement",
          "body": [
            {
              "type": "ReturnStatement",
              "argument": {
                "type": "CallExpression",
                "callee": {
                  "type": "MemberExpression",
                  "computed": false,
                  "object": {
                    "type": "ThisExpression",
                    "range": [
                      1689,
                      1693
                    ],
                    "loc": {
                      "start": {
                        "line": 41,
                        "column": 11
                      },
                      "end": {
                        "line": 41,
                        "column": 15
                      }
                    }
                  },
                  "property": {
                    "type": "Identifier",
                    "name": "lift",
                    "range": [
                      1694,
                      1698
                    ],
                    "loc": {
                      "start": {
                        "line": 41,
                        "column": 16
                      },
                      "end": {
                        "line": 41,
                        "column": 20
                      }
                    }
                  },
                  "range": [
                    1689,
                    1698
                  ],
                  "loc": {
                    "start": {
                      "line": 41,
                      "column": 11
                    },
                    "end": {
                      "line": 41,
                      "column": 20
                    }
                  }
                },
                "arguments": [
                  {
                    "type": "NewExpression",
                    "callee": {
                      "type": "Identifier",
                      "name": "WindowOperator",
                      "range": [
                        1703,
                        1717
                      ],
                      "loc": {
                        "start": {
                          "line": 41,
                          "column": 25
                        },
                        "end": {
                          "line": 41,
                          "column": 39
                        }
                      }
                    },
                    "arguments": [
                      {
                        "type": "Identifier",
                        "name": "windowBoundaries",
                        "range": [
                          1718,
                          1734
                        ],
                        "loc": {
                          "start": {
                            "line": 41,
                            "column": 40
                          },
                          "end": {
                            "line": 41,
                            "column": 56
                          }
                        }
                      }
                    ],
                    "range": [
                      1699,
                      1735
                    ],
                    "loc": {
                      "start": {
                        "line": 41,
                        "column": 21
                      },
                      "end": {
                        "line": 41,
                        "column": 57
                      }
                    }
                  }
                ],
                "range": [
                  1689,
                  1736
                ],
                "loc": {
                  "start": {
                    "line": 41,
                    "column": 11
                  },
                  "end": {
                    "line": 41,
                    "column": 58
                  }
                }
              },
              "range": [
                1682,
                1737
              ],
              "loc": {
                "start": {
                  "line": 41,
                  "column": 4
                },
                "end": {
                  "line": 41,
                  "column": 59
                }
              }
            }
          ],
          "range": [
            1676,
            1739
          ],
          "loc": {
            "start": {
              "line": 40,
              "column": 41
            },
            "end": {
              "line": 42,
              "column": 1
            }
          }
        },
        "generator": false,
        "expression": false,
        "range": [
          1642,
          1739
        ],
        "loc": {
          "start": {
            "line": 40,
            "column": 7
          },
          "end": {
            "line": 42,
            "column": 1
          }
        },
        "leadingComments": [
          {
            "type": "Block",
            "value": "*\n * Branch out the source Observable values as a nested Observable whenever\n * `windowBoundaries` emits.\n *\n * <span class=\"informal\">It's like {@link buffer}, but emits a nested Observable\n * instead of an array.</span>\n *\n * <img src=\"./img/window.png\" width=\"100%\">\n *\n * Returns an Observable that emits windows of items it collects from the source\n * Observable. The output Observable emits connected, non-overlapping\n * windows. It emits the current window and opens a new one whenever the\n * Observable `windowBoundaries` emits an item. Because each window is an\n * Observable, the output is a higher-order Observable.\n *\n * @example <caption>In every window of 1 second each, emit at most 2 click events</caption>\n * var clicks = Rx.Observable.fromEvent(document, 'click');\n * var interval = Rx.Observable.interval(1000);\n * var result = clicks.window(interval)\n *   .map(win => win.take(2)) // each window has at most 2 emissions\n *   .mergeAll(); // flatten the Observable-of-Observables\n * result.subscribe(x => console.log(x));\n *\n * @see {@link windowCount}\n * @see {@link windowTime}\n * @see {@link windowToggle}\n * @see {@link windowWhen}\n * @see {@link buffer}\n *\n * @param {Observable<any>} windowBoundaries An Observable that completes the\n * previous window and starts a new window.\n * @return {Observable<Observable<T>>} An Observable of windows, which are\n * Observables emitting values of the source Observable.\n * @method window\n * @owner Observable\n ",
            "range": [
              155,
              1634
            ],
            "loc": {
              "start": {
                "line": 4,
                "column": 0
              },
              "end": {
                "line": 39,
                "column": 3
              }
            }
          }
        ],
        "trailingComments": []
      },
      "specifiers": [],
      "source": null,
      "range": [
        1635,
        1739
      ],
      "loc": {
        "start": {
          "line": 40,
          "column": 0
        },
        "end": {
          "line": 42,
          "column": 1
        }
      },
      "leadingComments": [
        {
          "type": "Block",
          "value": "*\n * Branch out the source Observable values as a nested Observable whenever\n * `windowBoundaries` emits.\n *\n * <span class=\"informal\">It's like {@link buffer}, but emits a nested Observable\n * instead of an array.</span>\n *\n * <img src=\"./img/window.png\" width=\"100%\">\n *\n * Returns an Observable that emits windows of items it collects from the source\n * Observable. The output Observable emits connected, non-overlapping\n * windows. It emits the current window and opens a new one whenever the\n * Observable `windowBoundaries` emits an item. Because each window is an\n * Observable, the output is a higher-order Observable.\n *\n * @example <caption>In every window of 1 second each, emit at most 2 click events</caption>\n * var clicks = Rx.Observable.fromEvent(document, 'click');\n * var interval = Rx.Observable.interval(1000);\n * var result = clicks.window(interval)\n *   .map(win => win.take(2)) // each window has at most 2 emissions\n *   .mergeAll(); // flatten the Observable-of-Observables\n * result.subscribe(x => console.log(x));\n *\n * @see {@link windowCount}\n * @see {@link windowTime}\n * @see {@link windowToggle}\n * @see {@link windowWhen}\n * @see {@link buffer}\n *\n * @param {Observable<any>} windowBoundaries An Observable that completes the\n * previous window and starts a new window.\n * @return {Observable<Observable<T>>} An Observable of windows, which are\n * Observables emitting values of the source Observable.\n * @method window\n * @owner Observable\n ",
          "range": [
            155,
            1634
          ],
          "loc": {
            "start": {
              "line": 4,
              "column": 0
            },
            "end": {
              "line": 39,
              "column": 3
            }
          }
        }
      ]
    },
    {
      "type": "VariableDeclaration",
      "declarations": [
        {
          "type": "VariableDeclarator",
          "id": {
            "type": "Identifier",
            "name": "WindowOperator",
            "range": [
              1744,
              1758
            ],
            "loc": {
              "start": {
                "line": 43,
                "column": 4
              },
              "end": {
                "line": 43,
                "column": 18
              }
            }
          },
          "init": {
            "type": "CallExpression",
            "callee": {
              "type": "FunctionExpression",
              "id": null,
              "params": [],
              "body": {
                "type": "BlockStatement",
                "body": [
                  {
                    "type": "FunctionDeclaration",
                    "id": {
                      "type": "Identifier",
                      "name": "WindowOperator",
                      "range": [
                        1789,
                        1803
                      ],
                      "loc": {
                        "start": {
                          "line": 44,
                          "column": 13
                        },
                        "end": {
                          "line": 44,
                          "column": 27
                        }
                      }
                    },
                    "params": [
                      {
                        "type": "Identifier",
                        "name": "windowBoundaries",
                        "range": [
                          1804,
                          1820
                        ],
                        "loc": {
                          "start": {
                            "line": 44,
                            "column": 28
                          },
                          "end": {
                            "line": 44,
                            "column": 44
                          }
                        }
                      }
                    ],
                    "body": {
                      "type": "BlockStatement",
                      "body": [
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "AssignmentExpression",
                            "operator": "=",
                            "left": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  1832,
                                  1836
                                ],
                                "loc": {
                                  "start": {
                                    "line": 45,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 45,
                                    "column": 12
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "windowBoundaries",
                                "range": [
                                  1837,
                                  1853
                                ],
                                "loc": {
                                  "start": {
                                    "line": 45,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 45,
                                    "column": 29
                                  }
                                }
                              },
                              "range": [
                                1832,
                                1853
                              ],
                              "loc": {
                                "start": {
                                  "line": 45,
                                  "column": 8
                                },
                                "end": {
                                  "line": 45,
                                  "column": 29
                                }
                              }
                            },
                            "right": {
                              "type": "Identifier",
                              "name": "windowBoundaries",
                              "range": [
                                1856,
                                1872
                              ],
                              "loc": {
                                "start": {
                                  "line": 45,
                                  "column": 32
                                },
                                "end": {
                                  "line": 45,
                                  "column": 48
                                }
                              }
                            },
                            "range": [
                              1832,
                              1872
                            ],
                            "loc": {
                              "start": {
                                "line": 45,
                                "column": 8
                              },
                              "end": {
                                "line": 45,
                                "column": 48
                              }
                            }
                          },
                          "range": [
                            1832,
                            1873
                          ],
                          "loc": {
                            "start": {
                              "line": 45,
                              "column": 8
                            },
                            "end": {
                              "line": 45,
                              "column": 49
                            }
                          }
                        }
                      ],
                      "range": [
                        1822,
                        1879
                      ],
                      "loc": {
                        "start": {
                          "line": 44,
                          "column": 46
                        },
                        "end": {
                          "line": 46,
                          "column": 5
                        }
                      }
                    },
                    "generator": false,
                    "expression": false,
                    "range": [
                      1780,
                      1879
                    ],
                    "loc": {
                      "start": {
                        "line": 44,
                        "column": 4
                      },
                      "end": {
                        "line": 46,
                        "column": 5
                      }
                    }
                  },
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "AssignmentExpression",
                      "operator": "=",
                      "left": {
                        "type": "MemberExpression",
                        "computed": false,
                        "object": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "Identifier",
                            "name": "WindowOperator",
                            "range": [
                              1884,
                              1898
                            ],
                            "loc": {
                              "start": {
                                "line": 47,
                                "column": 4
                              },
                              "end": {
                                "line": 47,
                                "column": 18
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "prototype",
                            "range": [
                              1899,
                              1908
                            ],
                            "loc": {
                              "start": {
                                "line": 47,
                                "column": 19
                              },
                              "end": {
                                "line": 47,
                                "column": 28
                              }
                            }
                          },
                          "range": [
                            1884,
                            1908
                          ],
                          "loc": {
                            "start": {
                              "line": 47,
                              "column": 4
                            },
                            "end": {
                              "line": 47,
                              "column": 28
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "call",
                          "range": [
                            1909,
                            1913
                          ],
                          "loc": {
                            "start": {
                              "line": 47,
                              "column": 29
                            },
                            "end": {
                              "line": 47,
                              "column": 33
                            }
                          }
                        },
                        "range": [
                          1884,
                          1913
                        ],
                        "loc": {
                          "start": {
                            "line": 47,
                            "column": 4
                          },
                          "end": {
                            "line": 47,
                            "column": 33
                          }
                        }
                      },
                      "right": {
                        "type": "FunctionExpression",
                        "id": null,
                        "params": [
                          {
                            "type": "Identifier",
                            "name": "subscriber",
                            "range": [
                              1926,
                              1936
                            ],
                            "loc": {
                              "start": {
                                "line": 47,
                                "column": 46
                              },
                              "end": {
                                "line": 47,
                                "column": 56
                              }
                            }
                          },
                          {
                            "type": "Identifier",
                            "name": "source",
                            "range": [
                              1938,
                              1944
                            ],
                            "loc": {
                              "start": {
                                "line": 47,
                                "column": 58
                              },
                              "end": {
                                "line": 47,
                                "column": 64
                              }
                            }
                          }
                        ],
                        "body": {
                          "type": "BlockStatement",
                          "body": [
                            {
                              "type": "VariableDeclaration",
                              "declarations": [
                                {
                                  "type": "VariableDeclarator",
                                  "id": {
                                    "type": "Identifier",
                                    "name": "windowSubscriber",
                                    "range": [
                                      1960,
                                      1976
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 48,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 48,
                                        "column": 28
                                      }
                                    }
                                  },
                                  "init": {
                                    "type": "NewExpression",
                                    "callee": {
                                      "type": "Identifier",
                                      "name": "WindowSubscriber",
                                      "range": [
                                        1983,
                                        1999
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 48,
                                          "column": 35
                                        },
                                        "end": {
                                          "line": 48,
                                          "column": 51
                                        }
                                      }
                                    },
                                    "arguments": [
                                      {
                                        "type": "Identifier",
                                        "name": "subscriber",
                                        "range": [
                                          2000,
                                          2010
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 48,
                                            "column": 52
                                          },
                                          "end": {
                                            "line": 48,
                                            "column": 62
                                          }
                                        }
                                      }
                                    ],
                                    "range": [
                                      1979,
                                      2011
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 48,
                                        "column": 31
                                      },
                                      "end": {
                                        "line": 48,
                                        "column": 63
                                      }
                                    }
                                  },
                                  "range": [
                                    1960,
                                    2011
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 48,
                                      "column": 12
                                    },
                                    "end": {
                                      "line": 48,
                                      "column": 63
                                    }
                                  }
                                }
                              ],
                              "kind": "var",
                              "range": [
                                1956,
                                2012
                              ],
                              "loc": {
                                "start": {
                                  "line": 48,
                                  "column": 8
                                },
                                "end": {
                                  "line": 48,
                                  "column": 64
                                }
                              }
                            },
                            {
                              "type": "VariableDeclaration",
                              "declarations": [
                                {
                                  "type": "VariableDeclarator",
                                  "id": {
                                    "type": "Identifier",
                                    "name": "sourceSubscription",
                                    "range": [
                                      2025,
                                      2043
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 49,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 49,
                                        "column": 30
                                      }
                                    }
                                  },
                                  "init": {
                                    "type": "CallExpression",
                                    "callee": {
                                      "type": "MemberExpression",
                                      "computed": false,
                                      "object": {
                                        "type": "Identifier",
                                        "name": "source",
                                        "range": [
                                          2046,
                                          2052
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 49,
                                            "column": 33
                                          },
                                          "end": {
                                            "line": 49,
                                            "column": 39
                                          }
                                        }
                                      },
                                      "property": {
                                        "type": "Identifier",
                                        "name": "_subscribe",
                                        "range": [
                                          2053,
                                          2063
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 49,
                                            "column": 40
                                          },
                                          "end": {
                                            "line": 49,
                                            "column": 50
                                          }
                                        }
                                      },
                                      "range": [
                                        2046,
                                        2063
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 49,
                                          "column": 33
                                        },
                                        "end": {
                                          "line": 49,
                                          "column": 50
                                        }
                                      }
                                    },
                                    "arguments": [
                                      {
                                        "type": "Identifier",
                                        "name": "windowSubscriber",
                                        "range": [
                                          2064,
                                          2080
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 49,
                                            "column": 51
                                          },
                                          "end": {
                                            "line": 49,
                                            "column": 67
                                          }
                                        }
                                      }
                                    ],
                                    "range": [
                                      2046,
                                      2081
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 49,
                                        "column": 33
                                      },
                                      "end": {
                                        "line": 49,
                                        "column": 68
                                      }
                                    }
                                  },
                                  "range": [
                                    2025,
                                    2081
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 49,
                                      "column": 12
                                    },
                                    "end": {
                                      "line": 49,
                                      "column": 68
                                    }
                                  }
                                }
                              ],
                              "kind": "var",
                              "range": [
                                2021,
                                2082
                              ],
                              "loc": {
                                "start": {
                                  "line": 49,
                                  "column": 8
                                },
                                "end": {
                                  "line": 49,
                                  "column": 69
                                }
                              }
                            },
                            {
                              "type": "IfStatement",
                              "test": {
                                "type": "UnaryExpression",
                                "operator": "!",
                                "argument": {
                                  "type": "MemberExpression",
                                  "computed": false,
                                  "object": {
                                    "type": "Identifier",
                                    "name": "sourceSubscription",
                                    "range": [
                                      2096,
                                      2114
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 50,
                                        "column": 13
                                      },
                                      "end": {
                                        "line": 50,
                                        "column": 31
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "closed",
                                    "range": [
                                      2115,
                                      2121
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 50,
                                        "column": 32
                                      },
                                      "end": {
                                        "line": 50,
                                        "column": 38
                                      }
                                    }
                                  },
                                  "range": [
                                    2096,
                                    2121
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 50,
                                      "column": 13
                                    },
                                    "end": {
                                      "line": 50,
                                      "column": 38
                                    }
                                  }
                                },
                                "prefix": true,
                                "range": [
                                  2095,
                                  2121
                                ],
                                "loc": {
                                  "start": {
                                    "line": 50,
                                    "column": 12
                                  },
                                  "end": {
                                    "line": 50,
                                    "column": 38
                                  }
                                }
                              },
                              "consequent": {
                                "type": "BlockStatement",
                                "body": [
                                  {
                                    "type": "ExpressionStatement",
                                    "expression": {
                                      "type": "CallExpression",
                                      "callee": {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "Identifier",
                                          "name": "windowSubscriber",
                                          "range": [
                                            2137,
                                            2153
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 51,
                                              "column": 12
                                            },
                                            "end": {
                                              "line": 51,
                                              "column": 28
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "add",
                                          "range": [
                                            2154,
                                            2157
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 51,
                                              "column": 29
                                            },
                                            "end": {
                                              "line": 51,
                                              "column": 32
                                            }
                                          }
                                        },
                                        "range": [
                                          2137,
                                          2157
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 51,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 51,
                                            "column": 32
                                          }
                                        }
                                      },
                                      "arguments": [
                                        {
                                          "type": "CallExpression",
                                          "callee": {
                                            "type": "Identifier",
                                            "name": "subscribeToResult",
                                            "range": [
                                              2158,
                                              2175
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 51,
                                                "column": 33
                                              },
                                              "end": {
                                                "line": 51,
                                                "column": 50
                                              }
                                            }
                                          },
                                          "arguments": [
                                            {
                                              "type": "Identifier",
                                              "name": "windowSubscriber",
                                              "range": [
                                                2176,
                                                2192
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 51,
                                                  "column": 51
                                                },
                                                "end": {
                                                  "line": 51,
                                                  "column": 67
                                                }
                                              }
                                            },
                                            {
                                              "type": "MemberExpression",
                                              "computed": false,
                                              "object": {
                                                "type": "ThisExpression",
                                                "range": [
                                                  2194,
                                                  2198
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 51,
                                                    "column": 69
                                                  },
                                                  "end": {
                                                    "line": 51,
                                                    "column": 73
                                                  }
                                                }
                                              },
                                              "property": {
                                                "type": "Identifier",
                                                "name": "windowBoundaries",
                                                "range": [
                                                  2199,
                                                  2215
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 51,
                                                    "column": 74
                                                  },
                                                  "end": {
                                                    "line": 51,
                                                    "column": 90
                                                  }
                                                }
                                              },
                                              "range": [
                                                2194,
                                                2215
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 51,
                                                  "column": 69
                                                },
                                                "end": {
                                                  "line": 51,
                                                  "column": 90
                                                }
                                              }
                                            }
                                          ],
                                          "range": [
                                            2158,
                                            2216
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 51,
                                              "column": 33
                                            },
                                            "end": {
                                              "line": 51,
                                              "column": 91
                                            }
                                          }
                                        }
                                      ],
                                      "range": [
                                        2137,
                                        2217
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 51,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 51,
                                          "column": 92
                                        }
                                      }
                                    },
                                    "range": [
                                      2137,
                                      2218
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 51,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 51,
                                        "column": 93
                                      }
                                    }
                                  }
                                ],
                                "range": [
                                  2123,
                                  2228
                                ],
                                "loc": {
                                  "start": {
                                    "line": 50,
                                    "column": 40
                                  },
                                  "end": {
                                    "line": 52,
                                    "column": 9
                                  }
                                }
                              },
                              "alternate": null,
                              "range": [
                                2091,
                                2228
                              ],
                              "loc": {
                                "start": {
                                  "line": 50,
                                  "column": 8
                                },
                                "end": {
                                  "line": 52,
                                  "column": 9
                                }
                              }
                            },
                            {
                              "type": "ReturnStatement",
                              "argument": {
                                "type": "Identifier",
                                "name": "sourceSubscription",
                                "range": [
                                  2244,
                                  2262
                                ],
                                "loc": {
                                  "start": {
                                    "line": 53,
                                    "column": 15
                                  },
                                  "end": {
                                    "line": 53,
                                    "column": 33
                                  }
                                }
                              },
                              "range": [
                                2237,
                                2263
                              ],
                              "loc": {
                                "start": {
                                  "line": 53,
                                  "column": 8
                                },
                                "end": {
                                  "line": 53,
                                  "column": 34
                                }
                              }
                            }
                          ],
                          "range": [
                            1946,
                            2269
                          ],
                          "loc": {
                            "start": {
                              "line": 47,
                              "column": 66
                            },
                            "end": {
                              "line": 54,
                              "column": 5
                            }
                          }
                        },
                        "generator": false,
                        "expression": false,
                        "range": [
                          1916,
                          2269
                        ],
                        "loc": {
                          "start": {
                            "line": 47,
                            "column": 36
                          },
                          "end": {
                            "line": 54,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        1884,
                        2269
                      ],
                      "loc": {
                        "start": {
                          "line": 47,
                          "column": 4
                        },
                        "end": {
                          "line": 54,
                          "column": 5
                        }
                      }
                    },
                    "range": [
                      1884,
                      2270
                    ],
                    "loc": {
                      "start": {
                        "line": 47,
                        "column": 4
                      },
                      "end": {
                        "line": 54,
                        "column": 6
                      }
                    }
                  },
                  {
                    "type": "ReturnStatement",
                    "argument": {
                      "type": "Identifier",
                      "name": "WindowOperator",
                      "range": [
                        2282,
                        2296
                      ],
                      "loc": {
                        "start": {
                          "line": 55,
                          "column": 11
                        },
                        "end": {
                          "line": 55,
                          "column": 25
                        }
                      }
                    },
                    "range": [
                      2275,
                      2297
                    ],
                    "loc": {
                      "start": {
                        "line": 55,
                        "column": 4
                      },
                      "end": {
                        "line": 55,
                        "column": 26
                      }
                    }
                  }
                ],
                "range": [
                  1774,
                  2299
                ],
                "loc": {
                  "start": {
                    "line": 43,
                    "column": 34
                  },
                  "end": {
                    "line": 56,
                    "column": 1
                  }
                }
              },
              "generator": false,
              "expression": false,
              "range": [
                1762,
                2299
              ],
              "loc": {
                "start": {
                  "line": 43,
                  "column": 22
                },
                "end": {
                  "line": 56,
                  "column": 1
                }
              }
            },
            "arguments": [],
            "range": [
              1762,
              2301
            ],
            "loc": {
              "start": {
                "line": 43,
                "column": 22
              },
              "end": {
                "line": 56,
                "column": 3
              }
            }
          },
          "range": [
            1744,
            2302
          ],
          "loc": {
            "start": {
              "line": 43,
              "column": 4
            },
            "end": {
              "line": 56,
              "column": 4
            }
          }
        }
      ],
      "kind": "var",
      "range": [
        1740,
        2303
      ],
      "loc": {
        "start": {
          "line": 43,
          "column": 0
        },
        "end": {
          "line": 56,
          "column": 5
        }
      },
      "trailingComments": [
        {
          "type": "Block",
          "value": "*\n * We need this JSDoc comment for affecting ESDoc.\n * @ignore\n * @extends {Ignored}\n ",
          "range": [
            2304,
            2395
          ],
          "loc": {
            "start": {
              "line": 57,
              "column": 0
            },
            "end": {
              "line": 61,
              "column": 3
            }
          }
        }
      ]
    },
    {
      "type": "VariableDeclaration",
      "declarations": [
        {
          "type": "VariableDeclarator",
          "id": {
            "type": "Identifier",
            "name": "WindowSubscriber",
            "range": [
              2400,
              2416
            ],
            "loc": {
              "start": {
                "line": 62,
                "column": 4
              },
              "end": {
                "line": 62,
                "column": 20
              }
            }
          },
          "init": {
            "type": "CallExpression",
            "callee": {
              "type": "FunctionExpression",
              "id": null,
              "params": [
                {
                  "type": "Identifier",
                  "name": "_super",
                  "range": [
                    2430,
                    2436
                  ],
                  "loc": {
                    "start": {
                      "line": 62,
                      "column": 34
                    },
                    "end": {
                      "line": 62,
                      "column": 40
                    }
                  }
                }
              ],
              "body": {
                "type": "BlockStatement",
                "body": [
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "CallExpression",
                      "callee": {
                        "type": "Identifier",
                        "name": "__extends",
                        "range": [
                          2444,
                          2453
                        ],
                        "loc": {
                          "start": {
                            "line": 63,
                            "column": 4
                          },
                          "end": {
                            "line": 63,
                            "column": 13
                          }
                        }
                      },
                      "arguments": [
                        {
                          "type": "Identifier",
                          "name": "WindowSubscriber",
                          "range": [
                            2454,
                            2470
                          ],
                          "loc": {
                            "start": {
                              "line": 63,
                              "column": 14
                            },
                            "end": {
                              "line": 63,
                              "column": 30
                            }
                          }
                        },
                        {
                          "type": "Identifier",
                          "name": "_super",
                          "range": [
                            2472,
                            2478
                          ],
                          "loc": {
                            "start": {
                              "line": 63,
                              "column": 32
                            },
                            "end": {
                              "line": 63,
                              "column": 38
                            }
                          }
                        }
                      ],
                      "range": [
                        2444,
                        2479
                      ],
                      "loc": {
                        "start": {
                          "line": 63,
                          "column": 4
                        },
                        "end": {
                          "line": 63,
                          "column": 39
                        }
                      }
                    },
                    "range": [
                      2444,
                      2480
                    ],
                    "loc": {
                      "start": {
                        "line": 63,
                        "column": 4
                      },
                      "end": {
                        "line": 63,
                        "column": 40
                      }
                    }
                  },
                  {
                    "type": "FunctionDeclaration",
                    "id": {
                      "type": "Identifier",
                      "name": "WindowSubscriber",
                      "range": [
                        2494,
                        2510
                      ],
                      "loc": {
                        "start": {
                          "line": 64,
                          "column": 13
                        },
                        "end": {
                          "line": 64,
                          "column": 29
                        }
                      }
                    },
                    "params": [
                      {
                        "type": "Identifier",
                        "name": "destination",
                        "range": [
                          2511,
                          2522
                        ],
                        "loc": {
                          "start": {
                            "line": 64,
                            "column": 30
                          },
                          "end": {
                            "line": 64,
                            "column": 41
                          }
                        }
                      }
                    ],
                    "body": {
                      "type": "BlockStatement",
                      "body": [
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "CallExpression",
                            "callee": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "Identifier",
                                "name": "_super",
                                "range": [
                                  2534,
                                  2540
                                ],
                                "loc": {
                                  "start": {
                                    "line": 65,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 65,
                                    "column": 14
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "call",
                                "range": [
                                  2541,
                                  2545
                                ],
                                "loc": {
                                  "start": {
                                    "line": 65,
                                    "column": 15
                                  },
                                  "end": {
                                    "line": 65,
                                    "column": 19
                                  }
                                }
                              },
                              "range": [
                                2534,
                                2545
                              ],
                              "loc": {
                                "start": {
                                  "line": 65,
                                  "column": 8
                                },
                                "end": {
                                  "line": 65,
                                  "column": 19
                                }
                              }
                            },
                            "arguments": [
                              {
                                "type": "ThisExpression",
                                "range": [
                                  2546,
                                  2550
                                ],
                                "loc": {
                                  "start": {
                                    "line": 65,
                                    "column": 20
                                  },
                                  "end": {
                                    "line": 65,
                                    "column": 24
                                  }
                                }
                              },
                              {
                                "type": "Identifier",
                                "name": "destination",
                                "range": [
                                  2552,
                                  2563
                                ],
                                "loc": {
                                  "start": {
                                    "line": 65,
                                    "column": 26
                                  },
                                  "end": {
                                    "line": 65,
                                    "column": 37
                                  }
                                }
                              }
                            ],
                            "range": [
                              2534,
                              2564
                            ],
                            "loc": {
                              "start": {
                                "line": 65,
                                "column": 8
                              },
                              "end": {
                                "line": 65,
                                "column": 38
                              }
                            }
                          },
                          "range": [
                            2534,
                            2565
                          ],
                          "loc": {
                            "start": {
                              "line": 65,
                              "column": 8
                            },
                            "end": {
                              "line": 65,
                              "column": 39
                            }
                          }
                        },
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "AssignmentExpression",
                            "operator": "=",
                            "left": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  2574,
                                  2578
                                ],
                                "loc": {
                                  "start": {
                                    "line": 66,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 66,
                                    "column": 12
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "window",
                                "range": [
                                  2579,
                                  2585
                                ],
                                "loc": {
                                  "start": {
                                    "line": 66,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 66,
                                    "column": 19
                                  }
                                }
                              },
                              "range": [
                                2574,
                                2585
                              ],
                              "loc": {
                                "start": {
                                  "line": 66,
                                  "column": 8
                                },
                                "end": {
                                  "line": 66,
                                  "column": 19
                                }
                              }
                            },
                            "right": {
                              "type": "NewExpression",
                              "callee": {
                                "type": "Identifier",
                                "name": "Subject",
                                "range": [
                                  2592,
                                  2599
                                ],
                                "loc": {
                                  "start": {
                                    "line": 66,
                                    "column": 26
                                  },
                                  "end": {
                                    "line": 66,
                                    "column": 33
                                  }
                                }
                              },
                              "arguments": [],
                              "range": [
                                2588,
                                2601
                              ],
                              "loc": {
                                "start": {
                                  "line": 66,
                                  "column": 22
                                },
                                "end": {
                                  "line": 66,
                                  "column": 35
                                }
                              }
                            },
                            "range": [
                              2574,
                              2601
                            ],
                            "loc": {
                              "start": {
                                "line": 66,
                                "column": 8
                              },
                              "end": {
                                "line": 66,
                                "column": 35
                              }
                            }
                          },
                          "range": [
                            2574,
                            2602
                          ],
                          "loc": {
                            "start": {
                              "line": 66,
                              "column": 8
                            },
                            "end": {
                              "line": 66,
                              "column": 36
                            }
                          }
                        },
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "CallExpression",
                            "callee": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "Identifier",
                                "name": "destination",
                                "range": [
                                  2611,
                                  2622
                                ],
                                "loc": {
                                  "start": {
                                    "line": 67,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 67,
                                    "column": 19
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "next",
                                "range": [
                                  2623,
                                  2627
                                ],
                                "loc": {
                                  "start": {
                                    "line": 67,
                                    "column": 20
                                  },
                                  "end": {
                                    "line": 67,
                                    "column": 24
                                  }
                                }
                              },
                              "range": [
                                2611,
                                2627
                              ],
                              "loc": {
                                "start": {
                                  "line": 67,
                                  "column": 8
                                },
                                "end": {
                                  "line": 67,
                                  "column": 24
                                }
                              }
                            },
                            "arguments": [
                              {
                                "type": "MemberExpression",
                                "computed": false,
                                "object": {
                                  "type": "ThisExpression",
                                  "range": [
                                    2628,
                                    2632
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 67,
                                      "column": 25
                                    },
                                    "end": {
                                      "line": 67,
                                      "column": 29
                                    }
                                  }
                                },
                                "property": {
                                  "type": "Identifier",
                                  "name": "window",
                                  "range": [
                                    2633,
                                    2639
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 67,
                                      "column": 30
                                    },
                                    "end": {
                                      "line": 67,
                                      "column": 36
                                    }
                                  }
                                },
                                "range": [
                                  2628,
                                  2639
                                ],
                                "loc": {
                                  "start": {
                                    "line": 67,
                                    "column": 25
                                  },
                                  "end": {
                                    "line": 67,
                                    "column": 36
                                  }
                                }
                              }
                            ],
                            "range": [
                              2611,
                              2640
                            ],
                            "loc": {
                              "start": {
                                "line": 67,
                                "column": 8
                              },
                              "end": {
                                "line": 67,
                                "column": 37
                              }
                            }
                          },
                          "range": [
                            2611,
                            2641
                          ],
                          "loc": {
                            "start": {
                              "line": 67,
                              "column": 8
                            },
                            "end": {
                              "line": 67,
                              "column": 38
                            }
                          }
                        }
                      ],
                      "range": [
                        2524,
                        2647
                      ],
                      "loc": {
                        "start": {
                          "line": 64,
                          "column": 43
                        },
                        "end": {
                          "line": 68,
                          "column": 5
                        }
                      }
                    },
                    "generator": false,
                    "expression": false,
                    "range": [
                      2485,
                      2647
                    ],
                    "loc": {
                      "start": {
                        "line": 64,
                        "column": 4
                      },
                      "end": {
                        "line": 68,
                        "column": 5
                      }
                    }
                  },
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "AssignmentExpression",
                      "operator": "=",
                      "left": {
                        "type": "MemberExpression",
                        "computed": false,
                        "object": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "Identifier",
                            "name": "WindowSubscriber",
                            "range": [
                              2652,
                              2668
                            ],
                            "loc": {
                              "start": {
                                "line": 69,
                                "column": 4
                              },
                              "end": {
                                "line": 69,
                                "column": 20
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "prototype",
                            "range": [
                              2669,
                              2678
                            ],
                            "loc": {
                              "start": {
                                "line": 69,
                                "column": 21
                              },
                              "end": {
                                "line": 69,
                                "column": 30
                              }
                            }
                          },
                          "range": [
                            2652,
                            2678
                          ],
                          "loc": {
                            "start": {
                              "line": 69,
                              "column": 4
                            },
                            "end": {
                              "line": 69,
                              "column": 30
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "notifyNext",
                          "range": [
                            2679,
                            2689
                          ],
                          "loc": {
                            "start": {
                              "line": 69,
                              "column": 31
                            },
                            "end": {
                              "line": 69,
                              "column": 41
                            }
                          }
                        },
                        "range": [
                          2652,
                          2689
                        ],
                        "loc": {
                          "start": {
                            "line": 69,
                            "column": 4
                          },
                          "end": {
                            "line": 69,
                            "column": 41
                          }
                        }
                      },
                      "right": {
                        "type": "FunctionExpression",
                        "id": null,
                        "params": [
                          {
                            "type": "Identifier",
                            "name": "outerValue",
                            "range": [
                              2702,
                              2712
                            ],
                            "loc": {
                              "start": {
                                "line": 69,
                                "column": 54
                              },
                              "end": {
                                "line": 69,
                                "column": 64
                              }
                            }
                          },
                          {
                            "type": "Identifier",
                            "name": "innerValue",
                            "range": [
                              2714,
                              2724
                            ],
                            "loc": {
                              "start": {
                                "line": 69,
                                "column": 66
                              },
                              "end": {
                                "line": 69,
                                "column": 76
                              }
                            }
                          },
                          {
                            "type": "Identifier",
                            "name": "outerIndex",
                            "range": [
                              2726,
                              2736
                            ],
                            "loc": {
                              "start": {
                                "line": 69,
                                "column": 78
                              },
                              "end": {
                                "line": 69,
                                "column": 88
                              }
                            }
                          },
                          {
                            "type": "Identifier",
                            "name": "innerIndex",
                            "range": [
                              2738,
                              2748
                            ],
                            "loc": {
                              "start": {
                                "line": 69,
                                "column": 90
                              },
                              "end": {
                                "line": 69,
                                "column": 100
                              }
                            }
                          },
                          {
                            "type": "Identifier",
                            "name": "innerSub",
                            "range": [
                              2750,
                              2758
                            ],
                            "loc": {
                              "start": {
                                "line": 69,
                                "column": 102
                              },
                              "end": {
                                "line": 69,
                                "column": 110
                              }
                            }
                          }
                        ],
                        "body": {
                          "type": "BlockStatement",
                          "body": [
                            {
                              "type": "ExpressionStatement",
                              "expression": {
                                "type": "CallExpression",
                                "callee": {
                                  "type": "MemberExpression",
                                  "computed": false,
                                  "object": {
                                    "type": "ThisExpression",
                                    "range": [
                                      2770,
                                      2774
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 70,
                                        "column": 8
                                      },
                                      "end": {
                                        "line": 70,
                                        "column": 12
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "openWindow",
                                    "range": [
                                      2775,
                                      2785
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 70,
                                        "column": 13
                                      },
                                      "end": {
                                        "line": 70,
                                        "column": 23
                                      }
                                    }
                                  },
                                  "range": [
                                    2770,
                                    2785
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 70,
                                      "column": 8
                                    },
                                    "end": {
                                      "line": 70,
                                      "column": 23
                                    }
                                  }
                                },
                                "arguments": [],
                                "range": [
                                  2770,
                                  2787
                                ],
                                "loc": {
                                  "start": {
                                    "line": 70,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 70,
                                    "column": 25
                                  }
                                }
                              },
                              "range": [
                                2770,
                                2788
                              ],
                              "loc": {
                                "start": {
                                  "line": 70,
                                  "column": 8
                                },
                                "end": {
                                  "line": 70,
                                  "column": 26
                                }
                              }
                            }
                          ],
                          "range": [
                            2760,
                            2794
                          ],
                          "loc": {
                            "start": {
                              "line": 69,
                              "column": 112
                            },
                            "end": {
                              "line": 71,
                              "column": 5
                            }
                          }
                        },
                        "generator": false,
                        "expression": false,
                        "range": [
                          2692,
                          2794
                        ],
                        "loc": {
                          "start": {
                            "line": 69,
                            "column": 44
                          },
                          "end": {
                            "line": 71,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        2652,
                        2794
                      ],
                      "loc": {
                        "start": {
                          "line": 69,
                          "column": 4
                        },
                        "end": {
                          "line": 71,
                          "column": 5
                        }
                      }
                    },
                    "range": [
                      2652,
                      2795
                    ],
                    "loc": {
                      "start": {
                        "line": 69,
                        "column": 4
                      },
                      "end": {
                        "line": 71,
                        "column": 6
                      }
                    }
                  },
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "AssignmentExpression",
                      "operator": "=",
                      "left": {
                        "type": "MemberExpression",
                        "computed": false,
                        "object": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "Identifier",
                            "name": "WindowSubscriber",
                            "range": [
                              2800,
                              2816
                            ],
                            "loc": {
                              "start": {
                                "line": 72,
                                "column": 4
                              },
                              "end": {
                                "line": 72,
                                "column": 20
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "prototype",
                            "range": [
                              2817,
                              2826
                            ],
                            "loc": {
                              "start": {
                                "line": 72,
                                "column": 21
                              },
                              "end": {
                                "line": 72,
                                "column": 30
                              }
                            }
                          },
                          "range": [
                            2800,
                            2826
                          ],
                          "loc": {
                            "start": {
                              "line": 72,
                              "column": 4
                            },
                            "end": {
                              "line": 72,
                              "column": 30
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "notifyError",
                          "range": [
                            2827,
                            2838
                          ],
                          "loc": {
                            "start": {
                              "line": 72,
                              "column": 31
                            },
                            "end": {
                              "line": 72,
                              "column": 42
                            }
                          }
                        },
                        "range": [
                          2800,
                          2838
                        ],
                        "loc": {
                          "start": {
                            "line": 72,
                            "column": 4
                          },
                          "end": {
                            "line": 72,
                            "column": 42
                          }
                        }
                      },
                      "right": {
                        "type": "FunctionExpression",
                        "id": null,
                        "params": [
                          {
                            "type": "Identifier",
                            "name": "error",
                            "range": [
                              2851,
                              2856
                            ],
                            "loc": {
                              "start": {
                                "line": 72,
                                "column": 55
                              },
                              "end": {
                                "line": 72,
                                "column": 60
                              }
                            }
                          },
                          {
                            "type": "Identifier",
                            "name": "innerSub",
                            "range": [
                              2858,
                              2866
                            ],
                            "loc": {
                              "start": {
                                "line": 72,
                                "column": 62
                              },
                              "end": {
                                "line": 72,
                                "column": 70
                              }
                            }
                          }
                        ],
                        "body": {
                          "type": "BlockStatement",
                          "body": [
                            {
                              "type": "ExpressionStatement",
                              "expression": {
                                "type": "CallExpression",
                                "callee": {
                                  "type": "MemberExpression",
                                  "computed": false,
                                  "object": {
                                    "type": "ThisExpression",
                                    "range": [
                                      2878,
                                      2882
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 73,
                                        "column": 8
                                      },
                                      "end": {
                                        "line": 73,
                                        "column": 12
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "_error",
                                    "range": [
                                      2883,
                                      2889
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 73,
                                        "column": 13
                                      },
                                      "end": {
                                        "line": 73,
                                        "column": 19
                                      }
                                    }
                                  },
                                  "range": [
                                    2878,
                                    2889
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 73,
                                      "column": 8
                                    },
                                    "end": {
                                      "line": 73,
                                      "column": 19
                                    }
                                  }
                                },
                                "arguments": [
                                  {
                                    "type": "Identifier",
                                    "name": "error",
                                    "range": [
                                      2890,
                                      2895
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 73,
                                        "column": 20
                                      },
                                      "end": {
                                        "line": 73,
                                        "column": 25
                                      }
                                    }
                                  }
                                ],
                                "range": [
                                  2878,
                                  2896
                                ],
                                "loc": {
                                  "start": {
                                    "line": 73,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 73,
                                    "column": 26
                                  }
                                }
                              },
                              "range": [
                                2878,
                                2897
                              ],
                              "loc": {
                                "start": {
                                  "line": 73,
                                  "column": 8
                                },
                                "end": {
                                  "line": 73,
                                  "column": 27
                                }
                              }
                            }
                          ],
                          "range": [
                            2868,
                            2903
                          ],
                          "loc": {
                            "start": {
                              "line": 72,
                              "column": 72
                            },
                            "end": {
                              "line": 74,
                              "column": 5
                            }
                          }
                        },
                        "generator": false,
                        "expression": false,
                        "range": [
                          2841,
                          2903
                        ],
                        "loc": {
                          "start": {
                            "line": 72,
                            "column": 45
                          },
                          "end": {
                            "line": 74,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        2800,
                        2903
                      ],
                      "loc": {
                        "start": {
                          "line": 72,
                          "column": 4
                        },
                        "end": {
                          "line": 74,
                          "column": 5
                        }
                      }
                    },
                    "range": [
                      2800,
                      2904
                    ],
                    "loc": {
                      "start": {
                        "line": 72,
                        "column": 4
                      },
                      "end": {
                        "line": 74,
                        "column": 6
                      }
                    }
                  },
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "AssignmentExpression",
                      "operator": "=",
                      "left": {
                        "type": "MemberExpression",
                        "computed": false,
                        "object": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "Identifier",
                            "name": "WindowSubscriber",
                            "range": [
                              2909,
                              2925
                            ],
                            "loc": {
                              "start": {
                                "line": 75,
                                "column": 4
                              },
                              "end": {
                                "line": 75,
                                "column": 20
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "prototype",
                            "range": [
                              2926,
                              2935
                            ],
                            "loc": {
                              "start": {
                                "line": 75,
                                "column": 21
                              },
                              "end": {
                                "line": 75,
                                "column": 30
                              }
                            }
                          },
                          "range": [
                            2909,
                            2935
                          ],
                          "loc": {
                            "start": {
                              "line": 75,
                              "column": 4
                            },
                            "end": {
                              "line": 75,
                              "column": 30
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "notifyComplete",
                          "range": [
                            2936,
                            2950
                          ],
                          "loc": {
                            "start": {
                              "line": 75,
                              "column": 31
                            },
                            "end": {
                              "line": 75,
                              "column": 45
                            }
                          }
                        },
                        "range": [
                          2909,
                          2950
                        ],
                        "loc": {
                          "start": {
                            "line": 75,
                            "column": 4
                          },
                          "end": {
                            "line": 75,
                            "column": 45
                          }
                        }
                      },
                      "right": {
                        "type": "FunctionExpression",
                        "id": null,
                        "params": [
                          {
                            "type": "Identifier",
                            "name": "innerSub",
                            "range": [
                              2963,
                              2971
                            ],
                            "loc": {
                              "start": {
                                "line": 75,
                                "column": 58
                              },
                              "end": {
                                "line": 75,
                                "column": 66
                              }
                            }
                          }
                        ],
                        "body": {
                          "type": "BlockStatement",
                          "body": [
                            {
                              "type": "ExpressionStatement",
                              "expression": {
                                "type": "CallExpression",
                                "callee": {
                                  "type": "MemberExpression",
                                  "computed": false,
                                  "object": {
                                    "type": "ThisExpression",
                                    "range": [
                                      2983,
                                      2987
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 76,
                                        "column": 8
                                      },
                                      "end": {
                                        "line": 76,
                                        "column": 12
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "_complete",
                                    "range": [
                                      2988,
                                      2997
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 76,
                                        "column": 13
                                      },
                                      "end": {
                                        "line": 76,
                                        "column": 22
                                      }
                                    }
                                  },
                                  "range": [
                                    2983,
                                    2997
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 76,
                                      "column": 8
                                    },
                                    "end": {
                                      "line": 76,
                                      "column": 22
                                    }
                                  }
                                },
                                "arguments": [],
                                "range": [
                                  2983,
                                  2999
                                ],
                                "loc": {
                                  "start": {
                                    "line": 76,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 76,
                                    "column": 24
                                  }
                                }
                              },
                              "range": [
                                2983,
                                3000
                              ],
                              "loc": {
                                "start": {
                                  "line": 76,
                                  "column": 8
                                },
                                "end": {
                                  "line": 76,
                                  "column": 25
                                }
                              }
                            }
                          ],
                          "range": [
                            2973,
                            3006
                          ],
                          "loc": {
                            "start": {
                              "line": 75,
                              "column": 68
                            },
                            "end": {
                              "line": 77,
                              "column": 5
                            }
                          }
                        },
                        "generator": false,
                        "expression": false,
                        "range": [
                          2953,
                          3006
                        ],
                        "loc": {
                          "start": {
                            "line": 75,
                            "column": 48
                          },
                          "end": {
                            "line": 77,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        2909,
                        3006
                      ],
                      "loc": {
                        "start": {
                          "line": 75,
                          "column": 4
                        },
                        "end": {
                          "line": 77,
                          "column": 5
                        }
                      }
                    },
                    "range": [
                      2909,
                      3007
                    ],
                    "loc": {
                      "start": {
                        "line": 75,
                        "column": 4
                      },
                      "end": {
                        "line": 77,
                        "column": 6
                      }
                    }
                  },
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "AssignmentExpression",
                      "operator": "=",
                      "left": {
                        "type": "MemberExpression",
                        "computed": false,
                        "object": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "Identifier",
                            "name": "WindowSubscriber",
                            "range": [
                              3012,
                              3028
                            ],
                            "loc": {
                              "start": {
                                "line": 78,
                                "column": 4
                              },
                              "end": {
                                "line": 78,
                                "column": 20
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "prototype",
                            "range": [
                              3029,
                              3038
                            ],
                            "loc": {
                              "start": {
                                "line": 78,
                                "column": 21
                              },
                              "end": {
                                "line": 78,
                                "column": 30
                              }
                            }
                          },
                          "range": [
                            3012,
                            3038
                          ],
                          "loc": {
                            "start": {
                              "line": 78,
                              "column": 4
                            },
                            "end": {
                              "line": 78,
                              "column": 30
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "_next",
                          "range": [
                            3039,
                            3044
                          ],
                          "loc": {
                            "start": {
                              "line": 78,
                              "column": 31
                            },
                            "end": {
                              "line": 78,
                              "column": 36
                            }
                          }
                        },
                        "range": [
                          3012,
                          3044
                        ],
                        "loc": {
                          "start": {
                            "line": 78,
                            "column": 4
                          },
                          "end": {
                            "line": 78,
                            "column": 36
                          }
                        }
                      },
                      "right": {
                        "type": "FunctionExpression",
                        "id": null,
                        "params": [
                          {
                            "type": "Identifier",
                            "name": "value",
                            "range": [
                              3057,
                              3062
                            ],
                            "loc": {
                              "start": {
                                "line": 78,
                                "column": 49
                              },
                              "end": {
                                "line": 78,
                                "column": 54
                              }
                            }
                          }
                        ],
                        "body": {
                          "type": "BlockStatement",
                          "body": [
                            {
                              "type": "ExpressionStatement",
                              "expression": {
                                "type": "CallExpression",
                                "callee": {
                                  "type": "MemberExpression",
                                  "computed": false,
                                  "object": {
                                    "type": "MemberExpression",
                                    "computed": false,
                                    "object": {
                                      "type": "ThisExpression",
                                      "range": [
                                        3074,
                                        3078
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 79,
                                          "column": 8
                                        },
                                        "end": {
                                          "line": 79,
                                          "column": 12
                                        }
                                      }
                                    },
                                    "property": {
                                      "type": "Identifier",
                                      "name": "window",
                                      "range": [
                                        3079,
                                        3085
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 79,
                                          "column": 13
                                        },
                                        "end": {
                                          "line": 79,
                                          "column": 19
                                        }
                                      }
                                    },
                                    "range": [
                                      3074,
                                      3085
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 79,
                                        "column": 8
                                      },
                                      "end": {
                                        "line": 79,
                                        "column": 19
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "next",
                                    "range": [
                                      3086,
                                      3090
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 79,
                                        "column": 20
                                      },
                                      "end": {
                                        "line": 79,
                                        "column": 24
                                      }
                                    }
                                  },
                                  "range": [
                                    3074,
                                    3090
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 79,
                                      "column": 8
                                    },
                                    "end": {
                                      "line": 79,
                                      "column": 24
                                    }
                                  }
                                },
                                "arguments": [
                                  {
                                    "type": "Identifier",
                                    "name": "value",
                                    "range": [
                                      3091,
                                      3096
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 79,
                                        "column": 25
                                      },
                                      "end": {
                                        "line": 79,
                                        "column": 30
                                      }
                                    }
                                  }
                                ],
                                "range": [
                                  3074,
                                  3097
                                ],
                                "loc": {
                                  "start": {
                                    "line": 79,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 79,
                                    "column": 31
                                  }
                                }
                              },
                              "range": [
                                3074,
                                3098
                              ],
                              "loc": {
                                "start": {
                                  "line": 79,
                                  "column": 8
                                },
                                "end": {
                                  "line": 79,
                                  "column": 32
                                }
                              }
                            }
                          ],
                          "range": [
                            3064,
                            3104
                          ],
                          "loc": {
                            "start": {
                              "line": 78,
                              "column": 56
                            },
                            "end": {
                              "line": 80,
                              "column": 5
                            }
                          }
                        },
                        "generator": false,
                        "expression": false,
                        "range": [
                          3047,
                          3104
                        ],
                        "loc": {
                          "start": {
                            "line": 78,
                            "column": 39
                          },
                          "end": {
                            "line": 80,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        3012,
                        3104
                      ],
                      "loc": {
                        "start": {
                          "line": 78,
                          "column": 4
                        },
                        "end": {
                          "line": 80,
                          "column": 5
                        }
                      }
                    },
                    "range": [
                      3012,
                      3105
                    ],
                    "loc": {
                      "start": {
                        "line": 78,
                        "column": 4
                      },
                      "end": {
                        "line": 80,
                        "column": 6
                      }
                    }
                  },
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "AssignmentExpression",
                      "operator": "=",
                      "left": {
                        "type": "MemberExpression",
                        "computed": false,
                        "object": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "Identifier",
                            "name": "WindowSubscriber",
                            "range": [
                              3110,
                              3126
                            ],
                            "loc": {
                              "start": {
                                "line": 81,
                                "column": 4
                              },
                              "end": {
                                "line": 81,
                                "column": 20
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "prototype",
                            "range": [
                              3127,
                              3136
                            ],
                            "loc": {
                              "start": {
                                "line": 81,
                                "column": 21
                              },
                              "end": {
                                "line": 81,
                                "column": 30
                              }
                            }
                          },
                          "range": [
                            3110,
                            3136
                          ],
                          "loc": {
                            "start": {
                              "line": 81,
                              "column": 4
                            },
                            "end": {
                              "line": 81,
                              "column": 30
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "_error",
                          "range": [
                            3137,
                            3143
                          ],
                          "loc": {
                            "start": {
                              "line": 81,
                              "column": 31
                            },
                            "end": {
                              "line": 81,
                              "column": 37
                            }
                          }
                        },
                        "range": [
                          3110,
                          3143
                        ],
                        "loc": {
                          "start": {
                            "line": 81,
                            "column": 4
                          },
                          "end": {
                            "line": 81,
                            "column": 37
                          }
                        }
                      },
                      "right": {
                        "type": "FunctionExpression",
                        "id": null,
                        "params": [
                          {
                            "type": "Identifier",
                            "name": "err",
                            "range": [
                              3156,
                              3159
                            ],
                            "loc": {
                              "start": {
                                "line": 81,
                                "column": 50
                              },
                              "end": {
                                "line": 81,
                                "column": 53
                              }
                            }
                          }
                        ],
                        "body": {
                          "type": "BlockStatement",
                          "body": [
                            {
                              "type": "ExpressionStatement",
                              "expression": {
                                "type": "CallExpression",
                                "callee": {
                                  "type": "MemberExpression",
                                  "computed": false,
                                  "object": {
                                    "type": "MemberExpression",
                                    "computed": false,
                                    "object": {
                                      "type": "ThisExpression",
                                      "range": [
                                        3171,
                                        3175
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 82,
                                          "column": 8
                                        },
                                        "end": {
                                          "line": 82,
                                          "column": 12
                                        }
                                      }
                                    },
                                    "property": {
                                      "type": "Identifier",
                                      "name": "window",
                                      "range": [
                                        3176,
                                        3182
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 82,
                                          "column": 13
                                        },
                                        "end": {
                                          "line": 82,
                                          "column": 19
                                        }
                                      }
                                    },
                                    "range": [
                                      3171,
                                      3182
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 82,
                                        "column": 8
                                      },
                                      "end": {
                                        "line": 82,
                                        "column": 19
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "error",
                                    "range": [
                                      3183,
                                      3188
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 82,
                                        "column": 20
                                      },
                                      "end": {
                                        "line": 82,
                                        "column": 25
                                      }
                                    }
                                  },
                                  "range": [
                                    3171,
                                    3188
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 82,
                                      "column": 8
                                    },
                                    "end": {
                                      "line": 82,
                                      "column": 25
                                    }
                                  }
                                },
                                "arguments": [
                                  {
                                    "type": "Identifier",
                                    "name": "err",
                                    "range": [
                                      3189,
                                      3192
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 82,
                                        "column": 26
                                      },
                                      "end": {
                                        "line": 82,
                                        "column": 29
                                      }
                                    }
                                  }
                                ],
                                "range": [
                                  3171,
                                  3193
                                ],
                                "loc": {
                                  "start": {
                                    "line": 82,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 82,
                                    "column": 30
                                  }
                                }
                              },
                              "range": [
                                3171,
                                3194
                              ],
                              "loc": {
                                "start": {
                                  "line": 82,
                                  "column": 8
                                },
                                "end": {
                                  "line": 82,
                                  "column": 31
                                }
                              }
                            },
                            {
                              "type": "ExpressionStatement",
                              "expression": {
                                "type": "CallExpression",
                                "callee": {
                                  "type": "MemberExpression",
                                  "computed": false,
                                  "object": {
                                    "type": "MemberExpression",
                                    "computed": false,
                                    "object": {
                                      "type": "ThisExpression",
                                      "range": [
                                        3203,
                                        3207
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 83,
                                          "column": 8
                                        },
                                        "end": {
                                          "line": 83,
                                          "column": 12
                                        }
                                      }
                                    },
                                    "property": {
                                      "type": "Identifier",
                                      "name": "destination",
                                      "range": [
                                        3208,
                                        3219
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 83,
                                          "column": 13
                                        },
                                        "end": {
                                          "line": 83,
                                          "column": 24
                                        }
                                      }
                                    },
                                    "range": [
                                      3203,
                                      3219
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 83,
                                        "column": 8
                                      },
                                      "end": {
                                        "line": 83,
                                        "column": 24
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "error",
                                    "range": [
                                      3220,
                                      3225
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 83,
                                        "column": 25
                                      },
                                      "end": {
                                        "line": 83,
                                        "column": 30
                                      }
                                    }
                                  },
                                  "range": [
                                    3203,
                                    3225
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 83,
                                      "column": 8
                                    },
                                    "end": {
                                      "line": 83,
                                      "column": 30
                                    }
                                  }
                                },
                                "arguments": [
                                  {
                                    "type": "Identifier",
                                    "name": "err",
                                    "range": [
                                      3226,
                                      3229
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 83,
                                        "column": 31
                                      },
                                      "end": {
                                        "line": 83,
                                        "column": 34
                                      }
                                    }
                                  }
                                ],
                                "range": [
                                  3203,
                                  3230
                                ],
                                "loc": {
                                  "start": {
                                    "line": 83,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 83,
                                    "column": 35
                                  }
                                }
                              },
                              "range": [
                                3203,
                                3231
                              ],
                              "loc": {
                                "start": {
                                  "line": 83,
                                  "column": 8
                                },
                                "end": {
                                  "line": 83,
                                  "column": 36
                                }
                              }
                            }
                          ],
                          "range": [
                            3161,
                            3237
                          ],
                          "loc": {
                            "start": {
                              "line": 81,
                              "column": 55
                            },
                            "end": {
                              "line": 84,
                              "column": 5
                            }
                          }
                        },
                        "generator": false,
                        "expression": false,
                        "range": [
                          3146,
                          3237
                        ],
                        "loc": {
                          "start": {
                            "line": 81,
                            "column": 40
                          },
                          "end": {
                            "line": 84,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        3110,
                        3237
                      ],
                      "loc": {
                        "start": {
                          "line": 81,
                          "column": 4
                        },
                        "end": {
                          "line": 84,
                          "column": 5
                        }
                      }
                    },
                    "range": [
                      3110,
                      3238
                    ],
                    "loc": {
                      "start": {
                        "line": 81,
                        "column": 4
                      },
                      "end": {
                        "line": 84,
                        "column": 6
                      }
                    }
                  },
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "AssignmentExpression",
                      "operator": "=",
                      "left": {
                        "type": "MemberExpression",
                        "computed": false,
                        "object": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "Identifier",
                            "name": "WindowSubscriber",
                            "range": [
                              3243,
                              3259
                            ],
                            "loc": {
                              "start": {
                                "line": 85,
                                "column": 4
                              },
                              "end": {
                                "line": 85,
                                "column": 20
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "prototype",
                            "range": [
                              3260,
                              3269
                            ],
                            "loc": {
                              "start": {
                                "line": 85,
                                "column": 21
                              },
                              "end": {
                                "line": 85,
                                "column": 30
                              }
                            }
                          },
                          "range": [
                            3243,
                            3269
                          ],
                          "loc": {
                            "start": {
                              "line": 85,
                              "column": 4
                            },
                            "end": {
                              "line": 85,
                              "column": 30
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "_complete",
                          "range": [
                            3270,
                            3279
                          ],
                          "loc": {
                            "start": {
                              "line": 85,
                              "column": 31
                            },
                            "end": {
                              "line": 85,
                              "column": 40
                            }
                          }
                        },
                        "range": [
                          3243,
                          3279
                        ],
                        "loc": {
                          "start": {
                            "line": 85,
                            "column": 4
                          },
                          "end": {
                            "line": 85,
                            "column": 40
                          }
                        }
                      },
                      "right": {
                        "type": "FunctionExpression",
                        "id": null,
                        "params": [],
                        "body": {
                          "type": "BlockStatement",
                          "body": [
                            {
                              "type": "ExpressionStatement",
                              "expression": {
                                "type": "CallExpression",
                                "callee": {
                                  "type": "MemberExpression",
                                  "computed": false,
                                  "object": {
                                    "type": "MemberExpression",
                                    "computed": false,
                                    "object": {
                                      "type": "ThisExpression",
                                      "range": [
                                        3304,
                                        3308
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 86,
                                          "column": 8
                                        },
                                        "end": {
                                          "line": 86,
                                          "column": 12
                                        }
                                      }
                                    },
                                    "property": {
                                      "type": "Identifier",
                                      "name": "window",
                                      "range": [
                                        3309,
                                        3315
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 86,
                                          "column": 13
                                        },
                                        "end": {
                                          "line": 86,
                                          "column": 19
                                        }
                                      }
                                    },
                                    "range": [
                                      3304,
                                      3315
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 86,
                                        "column": 8
                                      },
                                      "end": {
                                        "line": 86,
                                        "column": 19
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "complete",
                                    "range": [
                                      3316,
                                      3324
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 86,
                                        "column": 20
                                      },
                                      "end": {
                                        "line": 86,
                                        "column": 28
                                      }
                                    }
                                  },
                                  "range": [
                                    3304,
                                    3324
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 86,
                                      "column": 8
                                    },
                                    "end": {
                                      "line": 86,
                                      "column": 28
                                    }
                                  }
                                },
                                "arguments": [],
                                "range": [
                                  3304,
                                  3326
                                ],
                                "loc": {
                                  "start": {
                                    "line": 86,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 86,
                                    "column": 30
                                  }
                                }
                              },
                              "range": [
                                3304,
                                3327
                              ],
                              "loc": {
                                "start": {
                                  "line": 86,
                                  "column": 8
                                },
                                "end": {
                                  "line": 86,
                                  "column": 31
                                }
                              }
                            },
                            {
                              "type": "ExpressionStatement",
                              "expression": {
                                "type": "CallExpression",
                                "callee": {
                                  "type": "MemberExpression",
                                  "computed": false,
                                  "object": {
                                    "type": "MemberExpression",
                                    "computed": false,
                                    "object": {
                                      "type": "ThisExpression",
                                      "range": [
                                        3336,
                                        3340
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 87,
                                          "column": 8
                                        },
                                        "end": {
                                          "line": 87,
                                          "column": 12
                                        }
                                      }
                                    },
                                    "property": {
                                      "type": "Identifier",
                                      "name": "destination",
                                      "range": [
                                        3341,
                                        3352
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 87,
                                          "column": 13
                                        },
                                        "end": {
                                          "line": 87,
                                          "column": 24
                                        }
                                      }
                                    },
                                    "range": [
                                      3336,
                                      3352
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 87,
                                        "column": 8
                                      },
                                      "end": {
                                        "line": 87,
                                        "column": 24
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "complete",
                                    "range": [
                                      3353,
                                      3361
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 87,
                                        "column": 25
                                      },
                                      "end": {
                                        "line": 87,
                                        "column": 33
                                      }
                                    }
                                  },
                                  "range": [
                                    3336,
                                    3361
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 87,
                                      "column": 8
                                    },
                                    "end": {
                                      "line": 87,
                                      "column": 33
                                    }
                                  }
                                },
                                "arguments": [],
                                "range": [
                                  3336,
                                  3363
                                ],
                                "loc": {
                                  "start": {
                                    "line": 87,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 87,
                                    "column": 35
                                  }
                                }
                              },
                              "range": [
                                3336,
                                3364
                              ],
                              "loc": {
                                "start": {
                                  "line": 87,
                                  "column": 8
                                },
                                "end": {
                                  "line": 87,
                                  "column": 36
                                }
                              }
                            }
                          ],
                          "range": [
                            3294,
                            3370
                          ],
                          "loc": {
                            "start": {
                              "line": 85,
                              "column": 55
                            },
                            "end": {
                              "line": 88,
                              "column": 5
                            }
                          }
                        },
                        "generator": false,
                        "expression": false,
                        "range": [
                          3282,
                          3370
                        ],
                        "loc": {
                          "start": {
                            "line": 85,
                            "column": 43
                          },
                          "end": {
                            "line": 88,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        3243,
                        3370
                      ],
                      "loc": {
                        "start": {
                          "line": 85,
                          "column": 4
                        },
                        "end": {
                          "line": 88,
                          "column": 5
                        }
                      }
                    },
                    "range": [
                      3243,
                      3371
                    ],
                    "loc": {
                      "start": {
                        "line": 85,
                        "column": 4
                      },
                      "end": {
                        "line": 88,
                        "column": 6
                      }
                    }
                  },
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "AssignmentExpression",
                      "operator": "=",
                      "left": {
                        "type": "MemberExpression",
                        "computed": false,
                        "object": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "Identifier",
                            "name": "WindowSubscriber",
                            "range": [
                              3376,
                              3392
                            ],
                            "loc": {
                              "start": {
                                "line": 89,
                                "column": 4
                              },
                              "end": {
                                "line": 89,
                                "column": 20
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "prototype",
                            "range": [
                              3393,
                              3402
                            ],
                            "loc": {
                              "start": {
                                "line": 89,
                                "column": 21
                              },
                              "end": {
                                "line": 89,
                                "column": 30
                              }
                            }
                          },
                          "range": [
                            3376,
                            3402
                          ],
                          "loc": {
                            "start": {
                              "line": 89,
                              "column": 4
                            },
                            "end": {
                              "line": 89,
                              "column": 30
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "_unsubscribe",
                          "range": [
                            3403,
                            3415
                          ],
                          "loc": {
                            "start": {
                              "line": 89,
                              "column": 31
                            },
                            "end": {
                              "line": 89,
                              "column": 43
                            }
                          }
                        },
                        "range": [
                          3376,
                          3415
                        ],
                        "loc": {
                          "start": {
                            "line": 89,
                            "column": 4
                          },
                          "end": {
                            "line": 89,
                            "column": 43
                          }
                        }
                      },
                      "right": {
                        "type": "FunctionExpression",
                        "id": null,
                        "params": [],
                        "body": {
                          "type": "BlockStatement",
                          "body": [
                            {
                              "type": "ExpressionStatement",
                              "expression": {
                                "type": "AssignmentExpression",
                                "operator": "=",
                                "left": {
                                  "type": "MemberExpression",
                                  "computed": false,
                                  "object": {
                                    "type": "ThisExpression",
                                    "range": [
                                      3440,
                                      3444
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 90,
                                        "column": 8
                                      },
                                      "end": {
                                        "line": 90,
                                        "column": 12
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "window",
                                    "range": [
                                      3445,
                                      3451
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 90,
                                        "column": 13
                                      },
                                      "end": {
                                        "line": 90,
                                        "column": 19
                                      }
                                    }
                                  },
                                  "range": [
                                    3440,
                                    3451
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 90,
                                      "column": 8
                                    },
                                    "end": {
                                      "line": 90,
                                      "column": 19
                                    }
                                  }
                                },
                                "right": {
                                  "type": "Literal",
                                  "value": null,
                                  "raw": "null",
                                  "range": [
                                    3454,
                                    3458
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 90,
                                      "column": 22
                                    },
                                    "end": {
                                      "line": 90,
                                      "column": 26
                                    }
                                  }
                                },
                                "range": [
                                  3440,
                                  3458
                                ],
                                "loc": {
                                  "start": {
                                    "line": 90,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 90,
                                    "column": 26
                                  }
                                }
                              },
                              "range": [
                                3440,
                                3459
                              ],
                              "loc": {
                                "start": {
                                  "line": 90,
                                  "column": 8
                                },
                                "end": {
                                  "line": 90,
                                  "column": 27
                                }
                              }
                            }
                          ],
                          "range": [
                            3430,
                            3465
                          ],
                          "loc": {
                            "start": {
                              "line": 89,
                              "column": 58
                            },
                            "end": {
                              "line": 91,
                              "column": 5
                            }
                          }
                        },
                        "generator": false,
                        "expression": false,
                        "range": [
                          3418,
                          3465
                        ],
                        "loc": {
                          "start": {
                            "line": 89,
                            "column": 46
                          },
                          "end": {
                            "line": 91,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        3376,
                        3465
                      ],
                      "loc": {
                        "start": {
                          "line": 89,
                          "column": 4
                        },
                        "end": {
                          "line": 91,
                          "column": 5
                        }
                      }
                    },
                    "range": [
                      3376,
                      3466
                    ],
                    "loc": {
                      "start": {
                        "line": 89,
                        "column": 4
                      },
                      "end": {
                        "line": 91,
                        "column": 6
                      }
                    }
                  },
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "AssignmentExpression",
                      "operator": "=",
                      "left": {
                        "type": "MemberExpression",
                        "computed": false,
                        "object": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "Identifier",
                            "name": "WindowSubscriber",
                            "range": [
                              3471,
                              3487
                            ],
                            "loc": {
                              "start": {
                                "line": 92,
                                "column": 4
                              },
                              "end": {
                                "line": 92,
                                "column": 20
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "prototype",
                            "range": [
                              3488,
                              3497
                            ],
                            "loc": {
                              "start": {
                                "line": 92,
                                "column": 21
                              },
                              "end": {
                                "line": 92,
                                "column": 30
                              }
                            }
                          },
                          "range": [
                            3471,
                            3497
                          ],
                          "loc": {
                            "start": {
                              "line": 92,
                              "column": 4
                            },
                            "end": {
                              "line": 92,
                              "column": 30
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "openWindow",
                          "range": [
                            3498,
                            3508
                          ],
                          "loc": {
                            "start": {
                              "line": 92,
                              "column": 31
                            },
                            "end": {
                              "line": 92,
                              "column": 41
                            }
                          }
                        },
                        "range": [
                          3471,
                          3508
                        ],
                        "loc": {
                          "start": {
                            "line": 92,
                            "column": 4
                          },
                          "end": {
                            "line": 92,
                            "column": 41
                          }
                        }
                      },
                      "right": {
                        "type": "FunctionExpression",
                        "id": null,
                        "params": [],
                        "body": {
                          "type": "BlockStatement",
                          "body": [
                            {
                              "type": "VariableDeclaration",
                              "declarations": [
                                {
                                  "type": "VariableDeclarator",
                                  "id": {
                                    "type": "Identifier",
                                    "name": "prevWindow",
                                    "range": [
                                      3537,
                                      3547
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 93,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 93,
                                        "column": 22
                                      }
                                    }
                                  },
                                  "init": {
                                    "type": "MemberExpression",
                                    "computed": false,
                                    "object": {
                                      "type": "ThisExpression",
                                      "range": [
                                        3550,
                                        3554
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 93,
                                          "column": 25
                                        },
                                        "end": {
                                          "line": 93,
                                          "column": 29
                                        }
                                      }
                                    },
                                    "property": {
                                      "type": "Identifier",
                                      "name": "window",
                                      "range": [
                                        3555,
                                        3561
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 93,
                                          "column": 30
                                        },
                                        "end": {
                                          "line": 93,
                                          "column": 36
                                        }
                                      }
                                    },
                                    "range": [
                                      3550,
                                      3561
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 93,
                                        "column": 25
                                      },
                                      "end": {
                                        "line": 93,
                                        "column": 36
                                      }
                                    }
                                  },
                                  "range": [
                                    3537,
                                    3561
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 93,
                                      "column": 12
                                    },
                                    "end": {
                                      "line": 93,
                                      "column": 36
                                    }
                                  }
                                }
                              ],
                              "kind": "var",
                              "range": [
                                3533,
                                3562
                              ],
                              "loc": {
                                "start": {
                                  "line": 93,
                                  "column": 8
                                },
                                "end": {
                                  "line": 93,
                                  "column": 37
                                }
                              }
                            },
                            {
                              "type": "IfStatement",
                              "test": {
                                "type": "Identifier",
                                "name": "prevWindow",
                                "range": [
                                  3575,
                                  3585
                                ],
                                "loc": {
                                  "start": {
                                    "line": 94,
                                    "column": 12
                                  },
                                  "end": {
                                    "line": 94,
                                    "column": 22
                                  }
                                }
                              },
                              "consequent": {
                                "type": "BlockStatement",
                                "body": [
                                  {
                                    "type": "ExpressionStatement",
                                    "expression": {
                                      "type": "CallExpression",
                                      "callee": {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "Identifier",
                                          "name": "prevWindow",
                                          "range": [
                                            3601,
                                            3611
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 95,
                                              "column": 12
                                            },
                                            "end": {
                                              "line": 95,
                                              "column": 22
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "complete",
                                          "range": [
                                            3612,
                                            3620
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 95,
                                              "column": 23
                                            },
                                            "end": {
                                              "line": 95,
                                              "column": 31
                                            }
                                          }
                                        },
                                        "range": [
                                          3601,
                                          3620
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 95,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 95,
                                            "column": 31
                                          }
                                        }
                                      },
                                      "arguments": [],
                                      "range": [
                                        3601,
                                        3622
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 95,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 95,
                                          "column": 33
                                        }
                                      }
                                    },
                                    "range": [
                                      3601,
                                      3623
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 95,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 95,
                                        "column": 34
                                      }
                                    }
                                  }
                                ],
                                "range": [
                                  3587,
                                  3633
                                ],
                                "loc": {
                                  "start": {
                                    "line": 94,
                                    "column": 24
                                  },
                                  "end": {
                                    "line": 96,
                                    "column": 9
                                  }
                                }
                              },
                              "alternate": null,
                              "range": [
                                3571,
                                3633
                              ],
                              "loc": {
                                "start": {
                                  "line": 94,
                                  "column": 8
                                },
                                "end": {
                                  "line": 96,
                                  "column": 9
                                }
                              }
                            },
                            {
                              "type": "VariableDeclaration",
                              "declarations": [
                                {
                                  "type": "VariableDeclarator",
                                  "id": {
                                    "type": "Identifier",
                                    "name": "destination",
                                    "range": [
                                      3646,
                                      3657
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 97,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 97,
                                        "column": 23
                                      }
                                    }
                                  },
                                  "init": {
                                    "type": "MemberExpression",
                                    "computed": false,
                                    "object": {
                                      "type": "ThisExpression",
                                      "range": [
                                        3660,
                                        3664
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 97,
                                          "column": 26
                                        },
                                        "end": {
                                          "line": 97,
                                          "column": 30
                                        }
                                      }
                                    },
                                    "property": {
                                      "type": "Identifier",
                                      "name": "destination",
                                      "range": [
                                        3665,
                                        3676
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 97,
                                          "column": 31
                                        },
                                        "end": {
                                          "line": 97,
                                          "column": 42
                                        }
                                      }
                                    },
                                    "range": [
                                      3660,
                                      3676
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 97,
                                        "column": 26
                                      },
                                      "end": {
                                        "line": 97,
                                        "column": 42
                                      }
                                    }
                                  },
                                  "range": [
                                    3646,
                                    3676
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 97,
                                      "column": 12
                                    },
                                    "end": {
                                      "line": 97,
                                      "column": 42
                                    }
                                  }
                                }
                              ],
                              "kind": "var",
                              "range": [
                                3642,
                                3677
                              ],
                              "loc": {
                                "start": {
                                  "line": 97,
                                  "column": 8
                                },
                                "end": {
                                  "line": 97,
                                  "column": 43
                                }
                              }
                            },
                            {
                              "type": "VariableDeclaration",
                              "declarations": [
                                {
                                  "type": "VariableDeclarator",
                                  "id": {
                                    "type": "Identifier",
                                    "name": "newWindow",
                                    "range": [
                                      3690,
                                      3699
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 98,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 98,
                                        "column": 21
                                      }
                                    }
                                  },
                                  "init": {
                                    "type": "AssignmentExpression",
                                    "operator": "=",
                                    "left": {
                                      "type": "MemberExpression",
                                      "computed": false,
                                      "object": {
                                        "type": "ThisExpression",
                                        "range": [
                                          3702,
                                          3706
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 98,
                                            "column": 24
                                          },
                                          "end": {
                                            "line": 98,
                                            "column": 28
                                          }
                                        }
                                      },
                                      "property": {
                                        "type": "Identifier",
                                        "name": "window",
                                        "range": [
                                          3707,
                                          3713
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 98,
                                            "column": 29
                                          },
                                          "end": {
                                            "line": 98,
                                            "column": 35
                                          }
                                        }
                                      },
                                      "range": [
                                        3702,
                                        3713
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 98,
                                          "column": 24
                                        },
                                        "end": {
                                          "line": 98,
                                          "column": 35
                                        }
                                      }
                                    },
                                    "right": {
                                      "type": "NewExpression",
                                      "callee": {
                                        "type": "Identifier",
                                        "name": "Subject",
                                        "range": [
                                          3720,
                                          3727
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 98,
                                            "column": 42
                                          },
                                          "end": {
                                            "line": 98,
                                            "column": 49
                                          }
                                        }
                                      },
                                      "arguments": [],
                                      "range": [
                                        3716,
                                        3729
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 98,
                                          "column": 38
                                        },
                                        "end": {
                                          "line": 98,
                                          "column": 51
                                        }
                                      }
                                    },
                                    "range": [
                                      3702,
                                      3729
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 98,
                                        "column": 24
                                      },
                                      "end": {
                                        "line": 98,
                                        "column": 51
                                      }
                                    }
                                  },
                                  "range": [
                                    3690,
                                    3729
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 98,
                                      "column": 12
                                    },
                                    "end": {
                                      "line": 98,
                                      "column": 51
                                    }
                                  }
                                }
                              ],
                              "kind": "var",
                              "range": [
                                3686,
                                3730
                              ],
                              "loc": {
                                "start": {
                                  "line": 98,
                                  "column": 8
                                },
                                "end": {
                                  "line": 98,
                                  "column": 52
                                }
                              }
                            },
                            {
                              "type": "ExpressionStatement",
                              "expression": {
                                "type": "CallExpression",
                                "callee": {
                                  "type": "MemberExpression",
                                  "computed": false,
                                  "object": {
                                    "type": "Identifier",
                                    "name": "destination",
                                    "range": [
                                      3739,
                                      3750
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 99,
                                        "column": 8
                                      },
                                      "end": {
                                        "line": 99,
                                        "column": 19
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "next",
                                    "range": [
                                      3751,
                                      3755
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 99,
                                        "column": 20
                                      },
                                      "end": {
                                        "line": 99,
                                        "column": 24
                                      }
                                    }
                                  },
                                  "range": [
                                    3739,
                                    3755
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 99,
                                      "column": 8
                                    },
                                    "end": {
                                      "line": 99,
                                      "column": 24
                                    }
                                  }
                                },
                                "arguments": [
                                  {
                                    "type": "Identifier",
                                    "name": "newWindow",
                                    "range": [
                                      3756,
                                      3765
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 99,
                                        "column": 25
                                      },
                                      "end": {
                                        "line": 99,
                                        "column": 34
                                      }
                                    }
                                  }
                                ],
                                "range": [
                                  3739,
                                  3766
                                ],
                                "loc": {
                                  "start": {
                                    "line": 99,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 99,
                                    "column": 35
                                  }
                                }
                              },
                              "range": [
                                3739,
                                3767
                              ],
                              "loc": {
                                "start": {
                                  "line": 99,
                                  "column": 8
                                },
                                "end": {
                                  "line": 99,
                                  "column": 36
                                }
                              }
                            }
                          ],
                          "range": [
                            3523,
                            3773
                          ],
                          "loc": {
                            "start": {
                              "line": 92,
                              "column": 56
                            },
                            "end": {
                              "line": 100,
                              "column": 5
                            }
                          }
                        },
                        "generator": false,
                        "expression": false,
                        "range": [
                          3511,
                          3773
                        ],
                        "loc": {
                          "start": {
                            "line": 92,
                            "column": 44
                          },
                          "end": {
                            "line": 100,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        3471,
                        3773
                      ],
                      "loc": {
                        "start": {
                          "line": 92,
                          "column": 4
                        },
                        "end": {
                          "line": 100,
                          "column": 5
                        }
                      }
                    },
                    "range": [
                      3471,
                      3774
                    ],
                    "loc": {
                      "start": {
                        "line": 92,
                        "column": 4
                      },
                      "end": {
                        "line": 100,
                        "column": 6
                      }
                    }
                  },
                  {
                    "type": "ReturnStatement",
                    "argument": {
                      "type": "Identifier",
                      "name": "WindowSubscriber",
                      "range": [
                        3786,
                        3802
                      ],
                      "loc": {
                        "start": {
                          "line": 101,
                          "column": 11
                        },
                        "end": {
                          "line": 101,
                          "column": 27
                        }
                      }
                    },
                    "range": [
                      3779,
                      3803
                    ],
                    "loc": {
                      "start": {
                        "line": 101,
                        "column": 4
                      },
                      "end": {
                        "line": 101,
                        "column": 28
                      }
                    }
                  }
                ],
                "range": [
                  2438,
                  3805
                ],
                "loc": {
                  "start": {
                    "line": 62,
                    "column": 42
                  },
                  "end": {
                    "line": 102,
                    "column": 1
                  }
                }
              },
              "generator": false,
              "expression": false,
              "range": [
                2420,
                3805
              ],
              "loc": {
                "start": {
                  "line": 62,
                  "column": 24
                },
                "end": {
                  "line": 102,
                  "column": 1
                }
              }
            },
            "arguments": [
              {
                "type": "Identifier",
                "name": "OuterSubscriber",
                "range": [
                  3806,
                  3821
                ],
                "loc": {
                  "start": {
                    "line": 102,
                    "column": 2
                  },
                  "end": {
                    "line": 102,
                    "column": 17
                  }
                }
              }
            ],
            "range": [
              2420,
              3822
            ],
            "loc": {
              "start": {
                "line": 62,
                "column": 24
              },
              "end": {
                "line": 102,
                "column": 18
              }
            }
          },
          "range": [
            2400,
            3823
          ],
          "loc": {
            "start": {
              "line": 62,
              "column": 4
            },
            "end": {
              "line": 102,
              "column": 19
            }
          }
        }
      ],
      "kind": "var",
      "range": [
        2396,
        3824
      ],
      "loc": {
        "start": {
          "line": 62,
          "column": 0
        },
        "end": {
          "line": 102,
          "column": 20
        }
      },
      "leadingComments": [
        {
          "type": "Block",
          "value": "*\n * We need this JSDoc comment for affecting ESDoc.\n * @ignore\n * @extends {Ignored}\n ",
          "range": [
            2304,
            2395
          ],
          "loc": {
            "start": {
              "line": 57,
              "column": 0
            },
            "end": {
              "line": 61,
              "column": 3
            }
          }
        }
      ],
      "trailingComments": [
        {
          "type": "Line",
          "value": "# sourceMappingURL=window.js.map",
          "range": [
            3825,
            3859
          ],
          "loc": {
            "start": {
              "line": 103,
              "column": 0
            },
            "end": {
              "line": 103,
              "column": 34
            }
          }
        }
      ]
    }
  ],
  "sourceType": "module",
  "range": [
    0,
    3824
  ],
  "loc": {
    "start": {
      "line": 1,
      "column": 0
    },
    "end": {
      "line": 102,
      "column": 20
    }
  },
  "comments": [
    {
      "type": "Block",
      "value": "*\n * Branch out the source Observable values as a nested Observable whenever\n * `windowBoundaries` emits.\n *\n * <span class=\"informal\">It's like {@link buffer}, but emits a nested Observable\n * instead of an array.</span>\n *\n * <img src=\"./img/window.png\" width=\"100%\">\n *\n * Returns an Observable that emits windows of items it collects from the source\n * Observable. The output Observable emits connected, non-overlapping\n * windows. It emits the current window and opens a new one whenever the\n * Observable `windowBoundaries` emits an item. Because each window is an\n * Observable, the output is a higher-order Observable.\n *\n * @example <caption>In every window of 1 second each, emit at most 2 click events</caption>\n * var clicks = Rx.Observable.fromEvent(document, 'click');\n * var interval = Rx.Observable.interval(1000);\n * var result = clicks.window(interval)\n *   .map(win => win.take(2)) // each window has at most 2 emissions\n *   .mergeAll(); // flatten the Observable-of-Observables\n * result.subscribe(x => console.log(x));\n *\n * @see {@link windowCount}\n * @see {@link windowTime}\n * @see {@link windowToggle}\n * @see {@link windowWhen}\n * @see {@link buffer}\n *\n * @param {Observable<any>} windowBoundaries An Observable that completes the\n * previous window and starts a new window.\n * @return {Observable<Observable<T>>} An Observable of windows, which are\n * Observables emitting values of the source Observable.\n * @method window\n * @owner Observable\n ",
      "range": [
        155,
        1634
      ],
      "loc": {
        "start": {
          "line": 4,
          "column": 0
        },
        "end": {
          "line": 39,
          "column": 3
        }
      }
    },
    {
      "type": "Block",
      "value": "*\n * We need this JSDoc comment for affecting ESDoc.\n * @ignore\n * @extends {Ignored}\n ",
      "range": [
        2304,
        2395
      ],
      "loc": {
        "start": {
          "line": 57,
          "column": 0
        },
        "end": {
          "line": 61,
          "column": 3
        }
      }
    },
    {
      "type": "Line",
      "value": "# sourceMappingURL=window.js.map",
      "range": [
        3825,
        3859
      ],
      "loc": {
        "start": {
          "line": 103,
          "column": 0
        },
        "end": {
          "line": 103,
          "column": 34
        }
      }
    }
  ]
}