{
  "type": "Program",
  "body": [
    {
      "type": "ImportDeclaration",
      "specifiers": [
        {
          "type": "ImportSpecifier",
          "local": {
            "type": "Identifier",
            "name": "OuterSubscriber",
            "range": [
              9,
              24
            ],
            "loc": {
              "start": {
                "line": 1,
                "column": 9
              },
              "end": {
                "line": 1,
                "column": 24
              }
            }
          },
          "imported": {
            "type": "Identifier",
            "name": "OuterSubscriber",
            "range": [
              9,
              24
            ],
            "loc": {
              "start": {
                "line": 1,
                "column": 9
              },
              "end": {
                "line": 1,
                "column": 24
              }
            }
          },
          "range": [
            9,
            24
          ],
          "loc": {
            "start": {
              "line": 1,
              "column": 9
            },
            "end": {
              "line": 1,
              "column": 24
            }
          }
        }
      ],
      "source": {
        "type": "Literal",
        "value": "../OuterSubscriber",
        "raw": "'../OuterSubscriber'",
        "range": [
          32,
          52
        ],
        "loc": {
          "start": {
            "line": 1,
            "column": 32
          },
          "end": {
            "line": 1,
            "column": 52
          }
        }
      },
      "range": [
        0,
        53
      ],
      "loc": {
        "start": {
          "line": 1,
          "column": 0
        },
        "end": {
          "line": 1,
          "column": 53
        }
      }
    },
    {
      "type": "ImportDeclaration",
      "specifiers": [
        {
          "type": "ImportSpecifier",
          "local": {
            "type": "Identifier",
            "name": "subscribeToResult",
            "range": [
              63,
              80
            ],
            "loc": {
              "start": {
                "line": 2,
                "column": 9
              },
              "end": {
                "line": 2,
                "column": 26
              }
            }
          },
          "imported": {
            "type": "Identifier",
            "name": "subscribeToResult",
            "range": [
              63,
              80
            ],
            "loc": {
              "start": {
                "line": 2,
                "column": 9
              },
              "end": {
                "line": 2,
                "column": 26
              }
            }
          },
          "range": [
            63,
            80
          ],
          "loc": {
            "start": {
              "line": 2,
              "column": 9
            },
            "end": {
              "line": 2,
              "column": 26
            }
          }
        }
      ],
      "source": {
        "type": "Literal",
        "value": "../util/subscribeToResult",
        "raw": "'../util/subscribeToResult'",
        "range": [
          88,
          115
        ],
        "loc": {
          "start": {
            "line": 2,
            "column": 34
          },
          "end": {
            "line": 2,
            "column": 61
          }
        }
      },
      "range": [
        54,
        116
      ],
      "loc": {
        "start": {
          "line": 2,
          "column": 0
        },
        "end": {
          "line": 2,
          "column": 62
        }
      },
      "trailingComments": [
        {
          "type": "Block",
          "value": "*\n * Buffers the source Observable values until `closingNotifier` emits.\n *\n * <span class=\"informal\">Collects values from the past as an array, and emits\n * that array only when another Observable emits.</span>\n *\n * <img src=\"./img/buffer.png\" width=\"100%\">\n *\n * Buffers the incoming Observable values until the given `closingNotifier`\n * Observable emits a value, at which point it emits the buffer on the output\n * Observable and starts a new buffer internally, awaiting the next time\n * `closingNotifier` emits.\n *\n * @example <caption>On every click, emit array of most recent interval events</caption>\n * var clicks = Rx.Observable.fromEvent(document, 'click');\n * var interval = Rx.Observable.interval(1000);\n * var buffered = interval.buffer(clicks);\n * buffered.subscribe(x => console.log(x));\n *\n * @see {@link bufferCount}\n * @see {@link bufferTime}\n * @see {@link bufferToggle}\n * @see {@link bufferWhen}\n * @see {@link window}\n *\n * @param {Observable<any>} closingNotifier An Observable that signals the\n * buffer to be emitted on the output Observable.\n * @return {Observable<T[]>} An Observable of buffers, which are arrays of\n * values.\n * @method buffer\n * @owner Observable\n ",
          "range": [
            117,
            1317
          ],
          "loc": {
            "start": {
              "line": 3,
              "column": 0
            },
            "end": {
              "line": 34,
              "column": 3
            }
          }
        }
      ]
    },
    {
      "type": "ExportNamedDeclaration",
      "declaration": {
        "type": "FunctionDeclaration",
        "id": {
          "type": "Identifier",
          "name": "buffer",
          "range": [
            1334,
            1340
          ],
          "loc": {
            "start": {
              "line": 35,
              "column": 16
            },
            "end": {
              "line": 35,
              "column": 22
            }
          }
        },
        "params": [
          {
            "type": "Identifier",
            "name": "closingNotifier",
            "range": [
              1341,
              1356
            ],
            "loc": {
              "start": {
                "line": 35,
                "column": 23
              },
              "end": {
                "line": 35,
                "column": 38
              }
            }
          }
        ],
        "body": {
          "type": "BlockStatement",
          "body": [
            {
              "type": "ReturnStatement",
              "argument": {
                "type": "CallExpression",
                "callee": {
                  "type": "MemberExpression",
                  "computed": false,
                  "object": {
                    "type": "ThisExpression",
                    "range": [
                      1371,
                      1375
                    ],
                    "loc": {
                      "start": {
                        "line": 36,
                        "column": 11
                      },
                      "end": {
                        "line": 36,
                        "column": 15
                      }
                    }
                  },
                  "property": {
                    "type": "Identifier",
                    "name": "lift",
                    "range": [
                      1376,
                      1380
                    ],
                    "loc": {
                      "start": {
                        "line": 36,
                        "column": 16
                      },
                      "end": {
                        "line": 36,
                        "column": 20
                      }
                    }
                  },
                  "range": [
                    1371,
                    1380
                  ],
                  "loc": {
                    "start": {
                      "line": 36,
                      "column": 11
                    },
                    "end": {
                      "line": 36,
                      "column": 20
                    }
                  }
                },
                "arguments": [
                  {
                    "type": "NewExpression",
                    "callee": {
                      "type": "Identifier",
                      "name": "BufferOperator",
                      "range": [
                        1385,
                        1399
                      ],
                      "loc": {
                        "start": {
                          "line": 36,
                          "column": 25
                        },
                        "end": {
                          "line": 36,
                          "column": 39
                        }
                      }
                    },
                    "arguments": [
                      {
                        "type": "Identifier",
                        "name": "closingNotifier",
                        "range": [
                          1400,
                          1415
                        ],
                        "loc": {
                          "start": {
                            "line": 36,
                            "column": 40
                          },
                          "end": {
                            "line": 36,
                            "column": 55
                          }
                        }
                      }
                    ],
                    "range": [
                      1381,
                      1416
                    ],
                    "loc": {
                      "start": {
                        "line": 36,
                        "column": 21
                      },
                      "end": {
                        "line": 36,
                        "column": 56
                      }
                    }
                  }
                ],
                "range": [
                  1371,
                  1417
                ],
                "loc": {
                  "start": {
                    "line": 36,
                    "column": 11
                  },
                  "end": {
                    "line": 36,
                    "column": 57
                  }
                }
              },
              "range": [
                1364,
                1418
              ],
              "loc": {
                "start": {
                  "line": 36,
                  "column": 4
                },
                "end": {
                  "line": 36,
                  "column": 58
                }
              }
            }
          ],
          "range": [
            1358,
            1420
          ],
          "loc": {
            "start": {
              "line": 35,
              "column": 40
            },
            "end": {
              "line": 37,
              "column": 1
            }
          }
        },
        "generator": false,
        "expression": false,
        "range": [
          1325,
          1420
        ],
        "loc": {
          "start": {
            "line": 35,
            "column": 7
          },
          "end": {
            "line": 37,
            "column": 1
          }
        },
        "leadingComments": [
          {
            "type": "Block",
            "value": "*\n * Buffers the source Observable values until `closingNotifier` emits.\n *\n * <span class=\"informal\">Collects values from the past as an array, and emits\n * that array only when another Observable emits.</span>\n *\n * <img src=\"./img/buffer.png\" width=\"100%\">\n *\n * Buffers the incoming Observable values until the given `closingNotifier`\n * Observable emits a value, at which point it emits the buffer on the output\n * Observable and starts a new buffer internally, awaiting the next time\n * `closingNotifier` emits.\n *\n * @example <caption>On every click, emit array of most recent interval events</caption>\n * var clicks = Rx.Observable.fromEvent(document, 'click');\n * var interval = Rx.Observable.interval(1000);\n * var buffered = interval.buffer(clicks);\n * buffered.subscribe(x => console.log(x));\n *\n * @see {@link bufferCount}\n * @see {@link bufferTime}\n * @see {@link bufferToggle}\n * @see {@link bufferWhen}\n * @see {@link window}\n *\n * @param {Observable<any>} closingNotifier An Observable that signals the\n * buffer to be emitted on the output Observable.\n * @return {Observable<T[]>} An Observable of buffers, which are arrays of\n * values.\n * @method buffer\n * @owner Observable\n ",
            "range": [
              117,
              1317
            ],
            "loc": {
              "start": {
                "line": 3,
                "column": 0
              },
              "end": {
                "line": 34,
                "column": 3
              }
            }
          }
        ],
        "trailingComments": []
      },
      "specifiers": [],
      "source": null,
      "range": [
        1318,
        1420
      ],
      "loc": {
        "start": {
          "line": 35,
          "column": 0
        },
        "end": {
          "line": 37,
          "column": 1
        }
      },
      "leadingComments": [
        {
          "type": "Block",
          "value": "*\n * Buffers the source Observable values until `closingNotifier` emits.\n *\n * <span class=\"informal\">Collects values from the past as an array, and emits\n * that array only when another Observable emits.</span>\n *\n * <img src=\"./img/buffer.png\" width=\"100%\">\n *\n * Buffers the incoming Observable values until the given `closingNotifier`\n * Observable emits a value, at which point it emits the buffer on the output\n * Observable and starts a new buffer internally, awaiting the next time\n * `closingNotifier` emits.\n *\n * @example <caption>On every click, emit array of most recent interval events</caption>\n * var clicks = Rx.Observable.fromEvent(document, 'click');\n * var interval = Rx.Observable.interval(1000);\n * var buffered = interval.buffer(clicks);\n * buffered.subscribe(x => console.log(x));\n *\n * @see {@link bufferCount}\n * @see {@link bufferTime}\n * @see {@link bufferToggle}\n * @see {@link bufferWhen}\n * @see {@link window}\n *\n * @param {Observable<any>} closingNotifier An Observable that signals the\n * buffer to be emitted on the output Observable.\n * @return {Observable<T[]>} An Observable of buffers, which are arrays of\n * values.\n * @method buffer\n * @owner Observable\n ",
          "range": [
            117,
            1317
          ],
          "loc": {
            "start": {
              "line": 3,
              "column": 0
            },
            "end": {
              "line": 34,
              "column": 3
            }
          }
        }
      ]
    },
    {
      "type": "VariableDeclaration",
      "declarations": [
        {
          "type": "VariableDeclarator",
          "id": {
            "type": "Identifier",
            "name": "BufferOperator",
            "range": [
              1425,
              1439
            ],
            "loc": {
              "start": {
                "line": 38,
                "column": 4
              },
              "end": {
                "line": 38,
                "column": 18
              }
            }
          },
          "init": {
            "type": "CallExpression",
            "callee": {
              "type": "FunctionExpression",
              "id": null,
              "params": [],
              "body": {
                "type": "BlockStatement",
                "body": [
                  {
                    "type": "FunctionDeclaration",
                    "id": {
                      "type": "Identifier",
                      "name": "BufferOperator",
                      "range": [
                        1470,
                        1484
                      ],
                      "loc": {
                        "start": {
                          "line": 39,
                          "column": 13
                        },
                        "end": {
                          "line": 39,
                          "column": 27
                        }
                      }
                    },
                    "params": [
                      {
                        "type": "Identifier",
                        "name": "closingNotifier",
                        "range": [
                          1485,
                          1500
                        ],
                        "loc": {
                          "start": {
                            "line": 39,
                            "column": 28
                          },
                          "end": {
                            "line": 39,
                            "column": 43
                          }
                        }
                      }
                    ],
                    "body": {
                      "type": "BlockStatement",
                      "body": [
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "AssignmentExpression",
                            "operator": "=",
                            "left": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  1512,
                                  1516
                                ],
                                "loc": {
                                  "start": {
                                    "line": 40,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 40,
                                    "column": 12
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "closingNotifier",
                                "range": [
                                  1517,
                                  1532
                                ],
                                "loc": {
                                  "start": {
                                    "line": 40,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 40,
                                    "column": 28
                                  }
                                }
                              },
                              "range": [
                                1512,
                                1532
                              ],
                              "loc": {
                                "start": {
                                  "line": 40,
                                  "column": 8
                                },
                                "end": {
                                  "line": 40,
                                  "column": 28
                                }
                              }
                            },
                            "right": {
                              "type": "Identifier",
                              "name": "closingNotifier",
                              "range": [
                                1535,
                                1550
                              ],
                              "loc": {
                                "start": {
                                  "line": 40,
                                  "column": 31
                                },
                                "end": {
                                  "line": 40,
                                  "column": 46
                                }
                              }
                            },
                            "range": [
                              1512,
                              1550
                            ],
                            "loc": {
                              "start": {
                                "line": 40,
                                "column": 8
                              },
                              "end": {
                                "line": 40,
                                "column": 46
                              }
                            }
                          },
                          "range": [
                            1512,
                            1551
                          ],
                          "loc": {
                            "start": {
                              "line": 40,
                              "column": 8
                            },
                            "end": {
                              "line": 40,
                              "column": 47
                            }
                          }
                        }
                      ],
                      "range": [
                        1502,
                        1557
                      ],
                      "loc": {
                        "start": {
                          "line": 39,
                          "column": 45
                        },
                        "end": {
                          "line": 41,
                          "column": 5
                        }
                      }
                    },
                    "generator": false,
                    "expression": false,
                    "range": [
                      1461,
                      1557
                    ],
                    "loc": {
                      "start": {
                        "line": 39,
                        "column": 4
                      },
                      "end": {
                        "line": 41,
                        "column": 5
                      }
                    }
                  },
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "AssignmentExpression",
                      "operator": "=",
                      "left": {
                        "type": "MemberExpression",
                        "computed": false,
                        "object": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "Identifier",
                            "name": "BufferOperator",
                            "range": [
                              1562,
                              1576
                            ],
                            "loc": {
                              "start": {
                                "line": 42,
                                "column": 4
                              },
                              "end": {
                                "line": 42,
                                "column": 18
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "prototype",
                            "range": [
                              1577,
                              1586
                            ],
                            "loc": {
                              "start": {
                                "line": 42,
                                "column": 19
                              },
                              "end": {
                                "line": 42,
                                "column": 28
                              }
                            }
                          },
                          "range": [
                            1562,
                            1586
                          ],
                          "loc": {
                            "start": {
                              "line": 42,
                              "column": 4
                            },
                            "end": {
                              "line": 42,
                              "column": 28
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "call",
                          "range": [
                            1587,
                            1591
                          ],
                          "loc": {
                            "start": {
                              "line": 42,
                              "column": 29
                            },
                            "end": {
                              "line": 42,
                              "column": 33
                            }
                          }
                        },
                        "range": [
                          1562,
                          1591
                        ],
                        "loc": {
                          "start": {
                            "line": 42,
                            "column": 4
                          },
                          "end": {
                            "line": 42,
                            "column": 33
                          }
                        }
                      },
                      "right": {
                        "type": "FunctionExpression",
                        "id": null,
                        "params": [
                          {
                            "type": "Identifier",
                            "name": "subscriber",
                            "range": [
                              1604,
                              1614
                            ],
                            "loc": {
                              "start": {
                                "line": 42,
                                "column": 46
                              },
                              "end": {
                                "line": 42,
                                "column": 56
                              }
                            }
                          },
                          {
                            "type": "Identifier",
                            "name": "source",
                            "range": [
                              1616,
                              1622
                            ],
                            "loc": {
                              "start": {
                                "line": 42,
                                "column": 58
                              },
                              "end": {
                                "line": 42,
                                "column": 64
                              }
                            }
                          }
                        ],
                        "body": {
                          "type": "BlockStatement",
                          "body": [
                            {
                              "type": "ReturnStatement",
                              "argument": {
                                "type": "CallExpression",
                                "callee": {
                                  "type": "MemberExpression",
                                  "computed": false,
                                  "object": {
                                    "type": "Identifier",
                                    "name": "source",
                                    "range": [
                                      1641,
                                      1647
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 43,
                                        "column": 15
                                      },
                                      "end": {
                                        "line": 43,
                                        "column": 21
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "_subscribe",
                                    "range": [
                                      1648,
                                      1658
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 43,
                                        "column": 22
                                      },
                                      "end": {
                                        "line": 43,
                                        "column": 32
                                      }
                                    }
                                  },
                                  "range": [
                                    1641,
                                    1658
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 43,
                                      "column": 15
                                    },
                                    "end": {
                                      "line": 43,
                                      "column": 32
                                    }
                                  }
                                },
                                "arguments": [
                                  {
                                    "type": "NewExpression",
                                    "callee": {
                                      "type": "Identifier",
                                      "name": "BufferSubscriber",
                                      "range": [
                                        1663,
                                        1679
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 43,
                                          "column": 37
                                        },
                                        "end": {
                                          "line": 43,
                                          "column": 53
                                        }
                                      }
                                    },
                                    "arguments": [
                                      {
                                        "type": "Identifier",
                                        "name": "subscriber",
                                        "range": [
                                          1680,
                                          1690
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 43,
                                            "column": 54
                                          },
                                          "end": {
                                            "line": 43,
                                            "column": 64
                                          }
                                        }
                                      },
                                      {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "ThisExpression",
                                          "range": [
                                            1692,
                                            1696
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 43,
                                              "column": 66
                                            },
                                            "end": {
                                              "line": 43,
                                              "column": 70
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "closingNotifier",
                                          "range": [
                                            1697,
                                            1712
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 43,
                                              "column": 71
                                            },
                                            "end": {
                                              "line": 43,
                                              "column": 86
                                            }
                                          }
                                        },
                                        "range": [
                                          1692,
                                          1712
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 43,
                                            "column": 66
                                          },
                                          "end": {
                                            "line": 43,
                                            "column": 86
                                          }
                                        }
                                      }
                                    ],
                                    "range": [
                                      1659,
                                      1713
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 43,
                                        "column": 33
                                      },
                                      "end": {
                                        "line": 43,
                                        "column": 87
                                      }
                                    }
                                  }
                                ],
                                "range": [
                                  1641,
                                  1714
                                ],
                                "loc": {
                                  "start": {
                                    "line": 43,
                                    "column": 15
                                  },
                                  "end": {
                                    "line": 43,
                                    "column": 88
                                  }
                                }
                              },
                              "range": [
                                1634,
                                1715
                              ],
                              "loc": {
                                "start": {
                                  "line": 43,
                                  "column": 8
                                },
                                "end": {
                                  "line": 43,
                                  "column": 89
                                }
                              }
                            }
                          ],
                          "range": [
                            1624,
                            1721
                          ],
                          "loc": {
                            "start": {
                              "line": 42,
                              "column": 66
                            },
                            "end": {
                              "line": 44,
                              "column": 5
                            }
                          }
                        },
                        "generator": false,
                        "expression": false,
                        "range": [
                          1594,
                          1721
                        ],
                        "loc": {
                          "start": {
                            "line": 42,
                            "column": 36
                          },
                          "end": {
                            "line": 44,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        1562,
                        1721
                      ],
                      "loc": {
                        "start": {
                          "line": 42,
                          "column": 4
                        },
                        "end": {
                          "line": 44,
                          "column": 5
                        }
                      }
                    },
                    "range": [
                      1562,
                      1722
                    ],
                    "loc": {
                      "start": {
                        "line": 42,
                        "column": 4
                      },
                      "end": {
                        "line": 44,
                        "column": 6
                      }
                    }
                  },
                  {
                    "type": "ReturnStatement",
                    "argument": {
                      "type": "Identifier",
                      "name": "BufferOperator",
                      "range": [
                        1734,
                        1748
                      ],
                      "loc": {
                        "start": {
                          "line": 45,
                          "column": 11
                        },
                        "end": {
                          "line": 45,
                          "column": 25
                        }
                      }
                    },
                    "range": [
                      1727,
                      1749
                    ],
                    "loc": {
                      "start": {
                        "line": 45,
                        "column": 4
                      },
                      "end": {
                        "line": 45,
                        "column": 26
                      }
                    }
                  }
                ],
                "range": [
                  1455,
                  1751
                ],
                "loc": {
                  "start": {
                    "line": 38,
                    "column": 34
                  },
                  "end": {
                    "line": 46,
                    "column": 1
                  }
                }
              },
              "generator": false,
              "expression": false,
              "range": [
                1443,
                1751
              ],
              "loc": {
                "start": {
                  "line": 38,
                  "column": 22
                },
                "end": {
                  "line": 46,
                  "column": 1
                }
              }
            },
            "arguments": [],
            "range": [
              1443,
              1753
            ],
            "loc": {
              "start": {
                "line": 38,
                "column": 22
              },
              "end": {
                "line": 46,
                "column": 3
              }
            }
          },
          "range": [
            1425,
            1754
          ],
          "loc": {
            "start": {
              "line": 38,
              "column": 4
            },
            "end": {
              "line": 46,
              "column": 4
            }
          }
        }
      ],
      "kind": "var",
      "range": [
        1421,
        1755
      ],
      "loc": {
        "start": {
          "line": 38,
          "column": 0
        },
        "end": {
          "line": 46,
          "column": 5
        }
      },
      "trailingComments": [
        {
          "type": "Block",
          "value": "*\n * We need this JSDoc comment for affecting ESDoc.\n * @ignore\n * @extends {Ignored}\n ",
          "range": [
            1756,
            1847
          ],
          "loc": {
            "start": {
              "line": 47,
              "column": 0
            },
            "end": {
              "line": 51,
              "column": 3
            }
          }
        }
      ]
    },
    {
      "type": "VariableDeclaration",
      "declarations": [
        {
          "type": "VariableDeclarator",
          "id": {
            "type": "Identifier",
            "name": "BufferSubscriber",
            "range": [
              1852,
              1868
            ],
            "loc": {
              "start": {
                "line": 52,
                "column": 4
              },
              "end": {
                "line": 52,
                "column": 20
              }
            }
          },
          "init": {
            "type": "CallExpression",
            "callee": {
              "type": "FunctionExpression",
              "id": null,
              "params": [
                {
                  "type": "Identifier",
                  "name": "_super",
                  "range": [
                    1882,
                    1888
                  ],
                  "loc": {
                    "start": {
                      "line": 52,
                      "column": 34
                    },
                    "end": {
                      "line": 52,
                      "column": 40
                    }
                  }
                }
              ],
              "body": {
                "type": "BlockStatement",
                "body": [
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "CallExpression",
                      "callee": {
                        "type": "Identifier",
                        "name": "__extends",
                        "range": [
                          1896,
                          1905
                        ],
                        "loc": {
                          "start": {
                            "line": 53,
                            "column": 4
                          },
                          "end": {
                            "line": 53,
                            "column": 13
                          }
                        }
                      },
                      "arguments": [
                        {
                          "type": "Identifier",
                          "name": "BufferSubscriber",
                          "range": [
                            1906,
                            1922
                          ],
                          "loc": {
                            "start": {
                              "line": 53,
                              "column": 14
                            },
                            "end": {
                              "line": 53,
                              "column": 30
                            }
                          }
                        },
                        {
                          "type": "Identifier",
                          "name": "_super",
                          "range": [
                            1924,
                            1930
                          ],
                          "loc": {
                            "start": {
                              "line": 53,
                              "column": 32
                            },
                            "end": {
                              "line": 53,
                              "column": 38
                            }
                          }
                        }
                      ],
                      "range": [
                        1896,
                        1931
                      ],
                      "loc": {
                        "start": {
                          "line": 53,
                          "column": 4
                        },
                        "end": {
                          "line": 53,
                          "column": 39
                        }
                      }
                    },
                    "range": [
                      1896,
                      1932
                    ],
                    "loc": {
                      "start": {
                        "line": 53,
                        "column": 4
                      },
                      "end": {
                        "line": 53,
                        "column": 40
                      }
                    }
                  },
                  {
                    "type": "FunctionDeclaration",
                    "id": {
                      "type": "Identifier",
                      "name": "BufferSubscriber",
                      "range": [
                        1946,
                        1962
                      ],
                      "loc": {
                        "start": {
                          "line": 54,
                          "column": 13
                        },
                        "end": {
                          "line": 54,
                          "column": 29
                        }
                      }
                    },
                    "params": [
                      {
                        "type": "Identifier",
                        "name": "destination",
                        "range": [
                          1963,
                          1974
                        ],
                        "loc": {
                          "start": {
                            "line": 54,
                            "column": 30
                          },
                          "end": {
                            "line": 54,
                            "column": 41
                          }
                        }
                      },
                      {
                        "type": "Identifier",
                        "name": "closingNotifier",
                        "range": [
                          1976,
                          1991
                        ],
                        "loc": {
                          "start": {
                            "line": 54,
                            "column": 43
                          },
                          "end": {
                            "line": 54,
                            "column": 58
                          }
                        }
                      }
                    ],
                    "body": {
                      "type": "BlockStatement",
                      "body": [
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "CallExpression",
                            "callee": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "Identifier",
                                "name": "_super",
                                "range": [
                                  2003,
                                  2009
                                ],
                                "loc": {
                                  "start": {
                                    "line": 55,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 55,
                                    "column": 14
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "call",
                                "range": [
                                  2010,
                                  2014
                                ],
                                "loc": {
                                  "start": {
                                    "line": 55,
                                    "column": 15
                                  },
                                  "end": {
                                    "line": 55,
                                    "column": 19
                                  }
                                }
                              },
                              "range": [
                                2003,
                                2014
                              ],
                              "loc": {
                                "start": {
                                  "line": 55,
                                  "column": 8
                                },
                                "end": {
                                  "line": 55,
                                  "column": 19
                                }
                              }
                            },
                            "arguments": [
                              {
                                "type": "ThisExpression",
                                "range": [
                                  2015,
                                  2019
                                ],
                                "loc": {
                                  "start": {
                                    "line": 55,
                                    "column": 20
                                  },
                                  "end": {
                                    "line": 55,
                                    "column": 24
                                  }
                                }
                              },
                              {
                                "type": "Identifier",
                                "name": "destination",
                                "range": [
                                  2021,
                                  2032
                                ],
                                "loc": {
                                  "start": {
                                    "line": 55,
                                    "column": 26
                                  },
                                  "end": {
                                    "line": 55,
                                    "column": 37
                                  }
                                }
                              }
                            ],
                            "range": [
                              2003,
                              2033
                            ],
                            "loc": {
                              "start": {
                                "line": 55,
                                "column": 8
                              },
                              "end": {
                                "line": 55,
                                "column": 38
                              }
                            }
                          },
                          "range": [
                            2003,
                            2034
                          ],
                          "loc": {
                            "start": {
                              "line": 55,
                              "column": 8
                            },
                            "end": {
                              "line": 55,
                              "column": 39
                            }
                          }
                        },
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "AssignmentExpression",
                            "operator": "=",
                            "left": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  2043,
                                  2047
                                ],
                                "loc": {
                                  "start": {
                                    "line": 56,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 56,
                                    "column": 12
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "buffer",
                                "range": [
                                  2048,
                                  2054
                                ],
                                "loc": {
                                  "start": {
                                    "line": 56,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 56,
                                    "column": 19
                                  }
                                }
                              },
                              "range": [
                                2043,
                                2054
                              ],
                              "loc": {
                                "start": {
                                  "line": 56,
                                  "column": 8
                                },
                                "end": {
                                  "line": 56,
                                  "column": 19
                                }
                              }
                            },
                            "right": {
                              "type": "ArrayExpression",
                              "elements": [],
                              "range": [
                                2057,
                                2059
                              ],
                              "loc": {
                                "start": {
                                  "line": 56,
                                  "column": 22
                                },
                                "end": {
                                  "line": 56,
                                  "column": 24
                                }
                              }
                            },
                            "range": [
                              2043,
                              2059
                            ],
                            "loc": {
                              "start": {
                                "line": 56,
                                "column": 8
                              },
                              "end": {
                                "line": 56,
                                "column": 24
                              }
                            }
                          },
                          "range": [
                            2043,
                            2060
                          ],
                          "loc": {
                            "start": {
                              "line": 56,
                              "column": 8
                            },
                            "end": {
                              "line": 56,
                              "column": 25
                            }
                          }
                        },
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "CallExpression",
                            "callee": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  2069,
                                  2073
                                ],
                                "loc": {
                                  "start": {
                                    "line": 57,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 57,
                                    "column": 12
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "add",
                                "range": [
                                  2074,
                                  2077
                                ],
                                "loc": {
                                  "start": {
                                    "line": 57,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 57,
                                    "column": 16
                                  }
                                }
                              },
                              "range": [
                                2069,
                                2077
                              ],
                              "loc": {
                                "start": {
                                  "line": 57,
                                  "column": 8
                                },
                                "end": {
                                  "line": 57,
                                  "column": 16
                                }
                              }
                            },
                            "arguments": [
                              {
                                "type": "CallExpression",
                                "callee": {
                                  "type": "Identifier",
                                  "name": "subscribeToResult",
                                  "range": [
                                    2078,
                                    2095
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 57,
                                      "column": 17
                                    },
                                    "end": {
                                      "line": 57,
                                      "column": 34
                                    }
                                  }
                                },
                                "arguments": [
                                  {
                                    "type": "ThisExpression",
                                    "range": [
                                      2096,
                                      2100
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 57,
                                        "column": 35
                                      },
                                      "end": {
                                        "line": 57,
                                        "column": 39
                                      }
                                    }
                                  },
                                  {
                                    "type": "Identifier",
                                    "name": "closingNotifier",
                                    "range": [
                                      2102,
                                      2117
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 57,
                                        "column": 41
                                      },
                                      "end": {
                                        "line": 57,
                                        "column": 56
                                      }
                                    }
                                  }
                                ],
                                "range": [
                                  2078,
                                  2118
                                ],
                                "loc": {
                                  "start": {
                                    "line": 57,
                                    "column": 17
                                  },
                                  "end": {
                                    "line": 57,
                                    "column": 57
                                  }
                                }
                              }
                            ],
                            "range": [
                              2069,
                              2119
                            ],
                            "loc": {
                              "start": {
                                "line": 57,
                                "column": 8
                              },
                              "end": {
                                "line": 57,
                                "column": 58
                              }
                            }
                          },
                          "range": [
                            2069,
                            2120
                          ],
                          "loc": {
                            "start": {
                              "line": 57,
                              "column": 8
                            },
                            "end": {
                              "line": 57,
                              "column": 59
                            }
                          }
                        }
                      ],
                      "range": [
                        1993,
                        2126
                      ],
                      "loc": {
                        "start": {
                          "line": 54,
                          "column": 60
                        },
                        "end": {
                          "line": 58,
                          "column": 5
                        }
                      }
                    },
                    "generator": false,
                    "expression": false,
                    "range": [
                      1937,
                      2126
                    ],
                    "loc": {
                      "start": {
                        "line": 54,
                        "column": 4
                      },
                      "end": {
                        "line": 58,
                        "column": 5
                      }
                    }
                  },
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "AssignmentExpression",
                      "operator": "=",
                      "left": {
                        "type": "MemberExpression",
                        "computed": false,
                        "object": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "Identifier",
                            "name": "BufferSubscriber",
                            "range": [
                              2131,
                              2147
                            ],
                            "loc": {
                              "start": {
                                "line": 59,
                                "column": 4
                              },
                              "end": {
                                "line": 59,
                                "column": 20
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "prototype",
                            "range": [
                              2148,
                              2157
                            ],
                            "loc": {
                              "start": {
                                "line": 59,
                                "column": 21
                              },
                              "end": {
                                "line": 59,
                                "column": 30
                              }
                            }
                          },
                          "range": [
                            2131,
                            2157
                          ],
                          "loc": {
                            "start": {
                              "line": 59,
                              "column": 4
                            },
                            "end": {
                              "line": 59,
                              "column": 30
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "_next",
                          "range": [
                            2158,
                            2163
                          ],
                          "loc": {
                            "start": {
                              "line": 59,
                              "column": 31
                            },
                            "end": {
                              "line": 59,
                              "column": 36
                            }
                          }
                        },
                        "range": [
                          2131,
                          2163
                        ],
                        "loc": {
                          "start": {
                            "line": 59,
                            "column": 4
                          },
                          "end": {
                            "line": 59,
                            "column": 36
                          }
                        }
                      },
                      "right": {
                        "type": "FunctionExpression",
                        "id": null,
                        "params": [
                          {
                            "type": "Identifier",
                            "name": "value",
                            "range": [
                              2176,
                              2181
                            ],
                            "loc": {
                              "start": {
                                "line": 59,
                                "column": 49
                              },
                              "end": {
                                "line": 59,
                                "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": [
                                        2193,
                                        2197
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 60,
                                          "column": 8
                                        },
                                        "end": {
                                          "line": 60,
                                          "column": 12
                                        }
                                      }
                                    },
                                    "property": {
                                      "type": "Identifier",
                                      "name": "buffer",
                                      "range": [
                                        2198,
                                        2204
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 60,
                                          "column": 13
                                        },
                                        "end": {
                                          "line": 60,
                                          "column": 19
                                        }
                                      }
                                    },
                                    "range": [
                                      2193,
                                      2204
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 60,
                                        "column": 8
                                      },
                                      "end": {
                                        "line": 60,
                                        "column": 19
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "push",
                                    "range": [
                                      2205,
                                      2209
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 60,
                                        "column": 20
                                      },
                                      "end": {
                                        "line": 60,
                                        "column": 24
                                      }
                                    }
                                  },
                                  "range": [
                                    2193,
                                    2209
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 60,
                                      "column": 8
                                    },
                                    "end": {
                                      "line": 60,
                                      "column": 24
                                    }
                                  }
                                },
                                "arguments": [
                                  {
                                    "type": "Identifier",
                                    "name": "value",
                                    "range": [
                                      2210,
                                      2215
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 60,
                                        "column": 25
                                      },
                                      "end": {
                                        "line": 60,
                                        "column": 30
                                      }
                                    }
                                  }
                                ],
                                "range": [
                                  2193,
                                  2216
                                ],
                                "loc": {
                                  "start": {
                                    "line": 60,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 60,
                                    "column": 31
                                  }
                                }
                              },
                              "range": [
                                2193,
                                2217
                              ],
                              "loc": {
                                "start": {
                                  "line": 60,
                                  "column": 8
                                },
                                "end": {
                                  "line": 60,
                                  "column": 32
                                }
                              }
                            }
                          ],
                          "range": [
                            2183,
                            2223
                          ],
                          "loc": {
                            "start": {
                              "line": 59,
                              "column": 56
                            },
                            "end": {
                              "line": 61,
                              "column": 5
                            }
                          }
                        },
                        "generator": false,
                        "expression": false,
                        "range": [
                          2166,
                          2223
                        ],
                        "loc": {
                          "start": {
                            "line": 59,
                            "column": 39
                          },
                          "end": {
                            "line": 61,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        2131,
                        2223
                      ],
                      "loc": {
                        "start": {
                          "line": 59,
                          "column": 4
                        },
                        "end": {
                          "line": 61,
                          "column": 5
                        }
                      }
                    },
                    "range": [
                      2131,
                      2224
                    ],
                    "loc": {
                      "start": {
                        "line": 59,
                        "column": 4
                      },
                      "end": {
                        "line": 61,
                        "column": 6
                      }
                    }
                  },
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "AssignmentExpression",
                      "operator": "=",
                      "left": {
                        "type": "MemberExpression",
                        "computed": false,
                        "object": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "Identifier",
                            "name": "BufferSubscriber",
                            "range": [
                              2229,
                              2245
                            ],
                            "loc": {
                              "start": {
                                "line": 62,
                                "column": 4
                              },
                              "end": {
                                "line": 62,
                                "column": 20
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "prototype",
                            "range": [
                              2246,
                              2255
                            ],
                            "loc": {
                              "start": {
                                "line": 62,
                                "column": 21
                              },
                              "end": {
                                "line": 62,
                                "column": 30
                              }
                            }
                          },
                          "range": [
                            2229,
                            2255
                          ],
                          "loc": {
                            "start": {
                              "line": 62,
                              "column": 4
                            },
                            "end": {
                              "line": 62,
                              "column": 30
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "notifyNext",
                          "range": [
                            2256,
                            2266
                          ],
                          "loc": {
                            "start": {
                              "line": 62,
                              "column": 31
                            },
                            "end": {
                              "line": 62,
                              "column": 41
                            }
                          }
                        },
                        "range": [
                          2229,
                          2266
                        ],
                        "loc": {
                          "start": {
                            "line": 62,
                            "column": 4
                          },
                          "end": {
                            "line": 62,
                            "column": 41
                          }
                        }
                      },
                      "right": {
                        "type": "FunctionExpression",
                        "id": null,
                        "params": [
                          {
                            "type": "Identifier",
                            "name": "outerValue",
                            "range": [
                              2279,
                              2289
                            ],
                            "loc": {
                              "start": {
                                "line": 62,
                                "column": 54
                              },
                              "end": {
                                "line": 62,
                                "column": 64
                              }
                            }
                          },
                          {
                            "type": "Identifier",
                            "name": "innerValue",
                            "range": [
                              2291,
                              2301
                            ],
                            "loc": {
                              "start": {
                                "line": 62,
                                "column": 66
                              },
                              "end": {
                                "line": 62,
                                "column": 76
                              }
                            }
                          },
                          {
                            "type": "Identifier",
                            "name": "outerIndex",
                            "range": [
                              2303,
                              2313
                            ],
                            "loc": {
                              "start": {
                                "line": 62,
                                "column": 78
                              },
                              "end": {
                                "line": 62,
                                "column": 88
                              }
                            }
                          },
                          {
                            "type": "Identifier",
                            "name": "innerIndex",
                            "range": [
                              2315,
                              2325
                            ],
                            "loc": {
                              "start": {
                                "line": 62,
                                "column": 90
                              },
                              "end": {
                                "line": 62,
                                "column": 100
                              }
                            }
                          },
                          {
                            "type": "Identifier",
                            "name": "innerSub",
                            "range": [
                              2327,
                              2335
                            ],
                            "loc": {
                              "start": {
                                "line": 62,
                                "column": 102
                              },
                              "end": {
                                "line": 62,
                                "column": 110
                              }
                            }
                          }
                        ],
                        "body": {
                          "type": "BlockStatement",
                          "body": [
                            {
                              "type": "VariableDeclaration",
                              "declarations": [
                                {
                                  "type": "VariableDeclarator",
                                  "id": {
                                    "type": "Identifier",
                                    "name": "buffer",
                                    "range": [
                                      2351,
                                      2357
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 63,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 63,
                                        "column": 18
                                      }
                                    }
                                  },
                                  "init": {
                                    "type": "MemberExpression",
                                    "computed": false,
                                    "object": {
                                      "type": "ThisExpression",
                                      "range": [
                                        2360,
                                        2364
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 63,
                                          "column": 21
                                        },
                                        "end": {
                                          "line": 63,
                                          "column": 25
                                        }
                                      }
                                    },
                                    "property": {
                                      "type": "Identifier",
                                      "name": "buffer",
                                      "range": [
                                        2365,
                                        2371
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 63,
                                          "column": 26
                                        },
                                        "end": {
                                          "line": 63,
                                          "column": 32
                                        }
                                      }
                                    },
                                    "range": [
                                      2360,
                                      2371
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 63,
                                        "column": 21
                                      },
                                      "end": {
                                        "line": 63,
                                        "column": 32
                                      }
                                    }
                                  },
                                  "range": [
                                    2351,
                                    2371
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 63,
                                      "column": 12
                                    },
                                    "end": {
                                      "line": 63,
                                      "column": 32
                                    }
                                  }
                                }
                              ],
                              "kind": "var",
                              "range": [
                                2347,
                                2372
                              ],
                              "loc": {
                                "start": {
                                  "line": 63,
                                  "column": 8
                                },
                                "end": {
                                  "line": 63,
                                  "column": 33
                                }
                              }
                            },
                            {
                              "type": "ExpressionStatement",
                              "expression": {
                                "type": "AssignmentExpression",
                                "operator": "=",
                                "left": {
                                  "type": "MemberExpression",
                                  "computed": false,
                                  "object": {
                                    "type": "ThisExpression",
                                    "range": [
                                      2381,
                                      2385
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 64,
                                        "column": 8
                                      },
                                      "end": {
                                        "line": 64,
                                        "column": 12
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "buffer",
                                    "range": [
                                      2386,
                                      2392
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 64,
                                        "column": 13
                                      },
                                      "end": {
                                        "line": 64,
                                        "column": 19
                                      }
                                    }
                                  },
                                  "range": [
                                    2381,
                                    2392
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 64,
                                      "column": 8
                                    },
                                    "end": {
                                      "line": 64,
                                      "column": 19
                                    }
                                  }
                                },
                                "right": {
                                  "type": "ArrayExpression",
                                  "elements": [],
                                  "range": [
                                    2395,
                                    2397
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 64,
                                      "column": 22
                                    },
                                    "end": {
                                      "line": 64,
                                      "column": 24
                                    }
                                  }
                                },
                                "range": [
                                  2381,
                                  2397
                                ],
                                "loc": {
                                  "start": {
                                    "line": 64,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 64,
                                    "column": 24
                                  }
                                }
                              },
                              "range": [
                                2381,
                                2398
                              ],
                              "loc": {
                                "start": {
                                  "line": 64,
                                  "column": 8
                                },
                                "end": {
                                  "line": 64,
                                  "column": 25
                                }
                              }
                            },
                            {
                              "type": "ExpressionStatement",
                              "expression": {
                                "type": "CallExpression",
                                "callee": {
                                  "type": "MemberExpression",
                                  "computed": false,
                                  "object": {
                                    "type": "MemberExpression",
                                    "computed": false,
                                    "object": {
                                      "type": "ThisExpression",
                                      "range": [
                                        2407,
                                        2411
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 65,
                                          "column": 8
                                        },
                                        "end": {
                                          "line": 65,
                                          "column": 12
                                        }
                                      }
                                    },
                                    "property": {
                                      "type": "Identifier",
                                      "name": "destination",
                                      "range": [
                                        2412,
                                        2423
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 65,
                                          "column": 13
                                        },
                                        "end": {
                                          "line": 65,
                                          "column": 24
                                        }
                                      }
                                    },
                                    "range": [
                                      2407,
                                      2423
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 65,
                                        "column": 8
                                      },
                                      "end": {
                                        "line": 65,
                                        "column": 24
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "next",
                                    "range": [
                                      2424,
                                      2428
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 65,
                                        "column": 25
                                      },
                                      "end": {
                                        "line": 65,
                                        "column": 29
                                      }
                                    }
                                  },
                                  "range": [
                                    2407,
                                    2428
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 65,
                                      "column": 8
                                    },
                                    "end": {
                                      "line": 65,
                                      "column": 29
                                    }
                                  }
                                },
                                "arguments": [
                                  {
                                    "type": "Identifier",
                                    "name": "buffer",
                                    "range": [
                                      2429,
                                      2435
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 65,
                                        "column": 30
                                      },
                                      "end": {
                                        "line": 65,
                                        "column": 36
                                      }
                                    }
                                  }
                                ],
                                "range": [
                                  2407,
                                  2436
                                ],
                                "loc": {
                                  "start": {
                                    "line": 65,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 65,
                                    "column": 37
                                  }
                                }
                              },
                              "range": [
                                2407,
                                2437
                              ],
                              "loc": {
                                "start": {
                                  "line": 65,
                                  "column": 8
                                },
                                "end": {
                                  "line": 65,
                                  "column": 38
                                }
                              }
                            }
                          ],
                          "range": [
                            2337,
                            2443
                          ],
                          "loc": {
                            "start": {
                              "line": 62,
                              "column": 112
                            },
                            "end": {
                              "line": 66,
                              "column": 5
                            }
                          }
                        },
                        "generator": false,
                        "expression": false,
                        "range": [
                          2269,
                          2443
                        ],
                        "loc": {
                          "start": {
                            "line": 62,
                            "column": 44
                          },
                          "end": {
                            "line": 66,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        2229,
                        2443
                      ],
                      "loc": {
                        "start": {
                          "line": 62,
                          "column": 4
                        },
                        "end": {
                          "line": 66,
                          "column": 5
                        }
                      }
                    },
                    "range": [
                      2229,
                      2444
                    ],
                    "loc": {
                      "start": {
                        "line": 62,
                        "column": 4
                      },
                      "end": {
                        "line": 66,
                        "column": 6
                      }
                    }
                  },
                  {
                    "type": "ReturnStatement",
                    "argument": {
                      "type": "Identifier",
                      "name": "BufferSubscriber",
                      "range": [
                        2456,
                        2472
                      ],
                      "loc": {
                        "start": {
                          "line": 67,
                          "column": 11
                        },
                        "end": {
                          "line": 67,
                          "column": 27
                        }
                      }
                    },
                    "range": [
                      2449,
                      2473
                    ],
                    "loc": {
                      "start": {
                        "line": 67,
                        "column": 4
                      },
                      "end": {
                        "line": 67,
                        "column": 28
                      }
                    }
                  }
                ],
                "range": [
                  1890,
                  2475
                ],
                "loc": {
                  "start": {
                    "line": 52,
                    "column": 42
                  },
                  "end": {
                    "line": 68,
                    "column": 1
                  }
                }
              },
              "generator": false,
              "expression": false,
              "range": [
                1872,
                2475
              ],
              "loc": {
                "start": {
                  "line": 52,
                  "column": 24
                },
                "end": {
                  "line": 68,
                  "column": 1
                }
              }
            },
            "arguments": [
              {
                "type": "Identifier",
                "name": "OuterSubscriber",
                "range": [
                  2476,
                  2491
                ],
                "loc": {
                  "start": {
                    "line": 68,
                    "column": 2
                  },
                  "end": {
                    "line": 68,
                    "column": 17
                  }
                }
              }
            ],
            "range": [
              1872,
              2492
            ],
            "loc": {
              "start": {
                "line": 52,
                "column": 24
              },
              "end": {
                "line": 68,
                "column": 18
              }
            }
          },
          "range": [
            1852,
            2493
          ],
          "loc": {
            "start": {
              "line": 52,
              "column": 4
            },
            "end": {
              "line": 68,
              "column": 19
            }
          }
        }
      ],
      "kind": "var",
      "range": [
        1848,
        2494
      ],
      "loc": {
        "start": {
          "line": 52,
          "column": 0
        },
        "end": {
          "line": 68,
          "column": 20
        }
      },
      "leadingComments": [
        {
          "type": "Block",
          "value": "*\n * We need this JSDoc comment for affecting ESDoc.\n * @ignore\n * @extends {Ignored}\n ",
          "range": [
            1756,
            1847
          ],
          "loc": {
            "start": {
              "line": 47,
              "column": 0
            },
            "end": {
              "line": 51,
              "column": 3
            }
          }
        }
      ],
      "trailingComments": [
        {
          "type": "Line",
          "value": "# sourceMappingURL=buffer.js.map",
          "range": [
            2495,
            2529
          ],
          "loc": {
            "start": {
              "line": 69,
              "column": 0
            },
            "end": {
              "line": 69,
              "column": 34
            }
          }
        }
      ]
    }
  ],
  "sourceType": "module",
  "range": [
    0,
    2494
  ],
  "loc": {
    "start": {
      "line": 1,
      "column": 0
    },
    "end": {
      "line": 68,
      "column": 20
    }
  },
  "comments": [
    {
      "type": "Block",
      "value": "*\n * Buffers the source Observable values until `closingNotifier` emits.\n *\n * <span class=\"informal\">Collects values from the past as an array, and emits\n * that array only when another Observable emits.</span>\n *\n * <img src=\"./img/buffer.png\" width=\"100%\">\n *\n * Buffers the incoming Observable values until the given `closingNotifier`\n * Observable emits a value, at which point it emits the buffer on the output\n * Observable and starts a new buffer internally, awaiting the next time\n * `closingNotifier` emits.\n *\n * @example <caption>On every click, emit array of most recent interval events</caption>\n * var clicks = Rx.Observable.fromEvent(document, 'click');\n * var interval = Rx.Observable.interval(1000);\n * var buffered = interval.buffer(clicks);\n * buffered.subscribe(x => console.log(x));\n *\n * @see {@link bufferCount}\n * @see {@link bufferTime}\n * @see {@link bufferToggle}\n * @see {@link bufferWhen}\n * @see {@link window}\n *\n * @param {Observable<any>} closingNotifier An Observable that signals the\n * buffer to be emitted on the output Observable.\n * @return {Observable<T[]>} An Observable of buffers, which are arrays of\n * values.\n * @method buffer\n * @owner Observable\n ",
      "range": [
        117,
        1317
      ],
      "loc": {
        "start": {
          "line": 3,
          "column": 0
        },
        "end": {
          "line": 34,
          "column": 3
        }
      }
    },
    {
      "type": "Block",
      "value": "*\n * We need this JSDoc comment for affecting ESDoc.\n * @ignore\n * @extends {Ignored}\n ",
      "range": [
        1756,
        1847
      ],
      "loc": {
        "start": {
          "line": 47,
          "column": 0
        },
        "end": {
          "line": 51,
          "column": 3
        }
      }
    },
    {
      "type": "Line",
      "value": "# sourceMappingURL=buffer.js.map",
      "range": [
        2495,
        2529
      ],
      "loc": {
        "start": {
          "line": 69,
          "column": 0
        },
        "end": {
          "line": 69,
          "column": 34
        }
      }
    }
  ]
}