{
  "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 * Converts a higher-order Observable into a first-order Observable which\n * concurrently delivers all values that are emitted on the inner Observables.\n *\n * <span class=\"informal\">Flattens an Observable-of-Observables.</span>\n *\n * <img src=\"./img/mergeAll.png\" width=\"100%\">\n *\n * `mergeAll` subscribes to an Observable that emits Observables, also known as\n * a higher-order Observable. Each time it observes one of these emitted inner\n * Observables, it subscribes to that and delivers all the values from the\n * inner Observable on the output Observable. The output Observable only\n * completes once all inner Observables have completed. Any error delivered by\n * a inner Observable will be immediately emitted on the output Observable.\n *\n * @example <caption>Spawn a new interval Observable for each click event, and blend their outputs as one Observable</caption>\n * var clicks = Rx.Observable.fromEvent(document, 'click');\n * var higherOrder = clicks.map((ev) => Rx.Observable.interval(1000));\n * var firstOrder = higherOrder.mergeAll();\n * firstOrder.subscribe(x => console.log(x));\n *\n * @example <caption>Count from 0 to 9 every second for each click, but only allow 2 concurrent timers</caption>\n * var clicks = Rx.Observable.fromEvent(document, 'click');\n * var higherOrder = clicks.map((ev) => Rx.Observable.interval(1000).take(10));\n * var firstOrder = higherOrder.mergeAll(2);\n * firstOrder.subscribe(x => console.log(x));\n *\n * @see {@link combineAll}\n * @see {@link concatAll}\n * @see {@link exhaust}\n * @see {@link merge}\n * @see {@link mergeMap}\n * @see {@link mergeMapTo}\n * @see {@link mergeScan}\n * @see {@link switch}\n * @see {@link zipAll}\n *\n * @param {number} [concurrent=Number.POSITIVE_INFINITY] Maximum number of inner\n * Observables being subscribed to concurrently.\n * @return {Observable} An Observable that emits values coming from all the\n * inner Observables emitted by the source Observable.\n * @method mergeAll\n * @owner Observable\n ",
          "range": [
            117,
            2096
          ],
          "loc": {
            "start": {
              "line": 3,
              "column": 0
            },
            "end": {
              "line": 46,
              "column": 3
            }
          }
        }
      ]
    },
    {
      "type": "ExportNamedDeclaration",
      "declaration": {
        "type": "FunctionDeclaration",
        "id": {
          "type": "Identifier",
          "name": "mergeAll",
          "range": [
            2113,
            2121
          ],
          "loc": {
            "start": {
              "line": 47,
              "column": 16
            },
            "end": {
              "line": 47,
              "column": 24
            }
          }
        },
        "params": [
          {
            "type": "Identifier",
            "name": "concurrent",
            "range": [
              2122,
              2132
            ],
            "loc": {
              "start": {
                "line": 47,
                "column": 25
              },
              "end": {
                "line": 47,
                "column": 35
              }
            }
          }
        ],
        "body": {
          "type": "BlockStatement",
          "body": [
            {
              "type": "IfStatement",
              "test": {
                "type": "BinaryExpression",
                "operator": "===",
                "left": {
                  "type": "Identifier",
                  "name": "concurrent",
                  "range": [
                    2144,
                    2154
                  ],
                  "loc": {
                    "start": {
                      "line": 48,
                      "column": 8
                    },
                    "end": {
                      "line": 48,
                      "column": 18
                    }
                  }
                },
                "right": {
                  "type": "UnaryExpression",
                  "operator": "void",
                  "argument": {
                    "type": "Literal",
                    "value": 0,
                    "raw": "0",
                    "range": [
                      2164,
                      2165
                    ],
                    "loc": {
                      "start": {
                        "line": 48,
                        "column": 28
                      },
                      "end": {
                        "line": 48,
                        "column": 29
                      }
                    }
                  },
                  "prefix": true,
                  "range": [
                    2159,
                    2165
                  ],
                  "loc": {
                    "start": {
                      "line": 48,
                      "column": 23
                    },
                    "end": {
                      "line": 48,
                      "column": 29
                    }
                  }
                },
                "range": [
                  2144,
                  2165
                ],
                "loc": {
                  "start": {
                    "line": 48,
                    "column": 8
                  },
                  "end": {
                    "line": 48,
                    "column": 29
                  }
                }
              },
              "consequent": {
                "type": "BlockStatement",
                "body": [
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "AssignmentExpression",
                      "operator": "=",
                      "left": {
                        "type": "Identifier",
                        "name": "concurrent",
                        "range": [
                          2169,
                          2179
                        ],
                        "loc": {
                          "start": {
                            "line": 48,
                            "column": 33
                          },
                          "end": {
                            "line": 48,
                            "column": 43
                          }
                        }
                      },
                      "right": {
                        "type": "MemberExpression",
                        "computed": false,
                        "object": {
                          "type": "Identifier",
                          "name": "Number",
                          "range": [
                            2182,
                            2188
                          ],
                          "loc": {
                            "start": {
                              "line": 48,
                              "column": 46
                            },
                            "end": {
                              "line": 48,
                              "column": 52
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "POSITIVE_INFINITY",
                          "range": [
                            2189,
                            2206
                          ],
                          "loc": {
                            "start": {
                              "line": 48,
                              "column": 53
                            },
                            "end": {
                              "line": 48,
                              "column": 70
                            }
                          }
                        },
                        "range": [
                          2182,
                          2206
                        ],
                        "loc": {
                          "start": {
                            "line": 48,
                            "column": 46
                          },
                          "end": {
                            "line": 48,
                            "column": 70
                          }
                        }
                      },
                      "range": [
                        2169,
                        2206
                      ],
                      "loc": {
                        "start": {
                          "line": 48,
                          "column": 33
                        },
                        "end": {
                          "line": 48,
                          "column": 70
                        }
                      }
                    },
                    "range": [
                      2169,
                      2207
                    ],
                    "loc": {
                      "start": {
                        "line": 48,
                        "column": 33
                      },
                      "end": {
                        "line": 48,
                        "column": 71
                      }
                    }
                  }
                ],
                "range": [
                  2167,
                  2209
                ],
                "loc": {
                  "start": {
                    "line": 48,
                    "column": 31
                  },
                  "end": {
                    "line": 48,
                    "column": 73
                  }
                }
              },
              "alternate": null,
              "range": [
                2140,
                2209
              ],
              "loc": {
                "start": {
                  "line": 48,
                  "column": 4
                },
                "end": {
                  "line": 48,
                  "column": 73
                }
              }
            },
            {
              "type": "ReturnStatement",
              "argument": {
                "type": "CallExpression",
                "callee": {
                  "type": "MemberExpression",
                  "computed": false,
                  "object": {
                    "type": "ThisExpression",
                    "range": [
                      2221,
                      2225
                    ],
                    "loc": {
                      "start": {
                        "line": 49,
                        "column": 11
                      },
                      "end": {
                        "line": 49,
                        "column": 15
                      }
                    }
                  },
                  "property": {
                    "type": "Identifier",
                    "name": "lift",
                    "range": [
                      2226,
                      2230
                    ],
                    "loc": {
                      "start": {
                        "line": 49,
                        "column": 16
                      },
                      "end": {
                        "line": 49,
                        "column": 20
                      }
                    }
                  },
                  "range": [
                    2221,
                    2230
                  ],
                  "loc": {
                    "start": {
                      "line": 49,
                      "column": 11
                    },
                    "end": {
                      "line": 49,
                      "column": 20
                    }
                  }
                },
                "arguments": [
                  {
                    "type": "NewExpression",
                    "callee": {
                      "type": "Identifier",
                      "name": "MergeAllOperator",
                      "range": [
                        2235,
                        2251
                      ],
                      "loc": {
                        "start": {
                          "line": 49,
                          "column": 25
                        },
                        "end": {
                          "line": 49,
                          "column": 41
                        }
                      }
                    },
                    "arguments": [
                      {
                        "type": "Identifier",
                        "name": "concurrent",
                        "range": [
                          2252,
                          2262
                        ],
                        "loc": {
                          "start": {
                            "line": 49,
                            "column": 42
                          },
                          "end": {
                            "line": 49,
                            "column": 52
                          }
                        }
                      }
                    ],
                    "range": [
                      2231,
                      2263
                    ],
                    "loc": {
                      "start": {
                        "line": 49,
                        "column": 21
                      },
                      "end": {
                        "line": 49,
                        "column": 53
                      }
                    }
                  }
                ],
                "range": [
                  2221,
                  2264
                ],
                "loc": {
                  "start": {
                    "line": 49,
                    "column": 11
                  },
                  "end": {
                    "line": 49,
                    "column": 54
                  }
                }
              },
              "range": [
                2214,
                2265
              ],
              "loc": {
                "start": {
                  "line": 49,
                  "column": 4
                },
                "end": {
                  "line": 49,
                  "column": 55
                }
              }
            }
          ],
          "range": [
            2134,
            2267
          ],
          "loc": {
            "start": {
              "line": 47,
              "column": 37
            },
            "end": {
              "line": 50,
              "column": 1
            }
          }
        },
        "generator": false,
        "expression": false,
        "range": [
          2104,
          2267
        ],
        "loc": {
          "start": {
            "line": 47,
            "column": 7
          },
          "end": {
            "line": 50,
            "column": 1
          }
        },
        "leadingComments": [
          {
            "type": "Block",
            "value": "*\n * Converts a higher-order Observable into a first-order Observable which\n * concurrently delivers all values that are emitted on the inner Observables.\n *\n * <span class=\"informal\">Flattens an Observable-of-Observables.</span>\n *\n * <img src=\"./img/mergeAll.png\" width=\"100%\">\n *\n * `mergeAll` subscribes to an Observable that emits Observables, also known as\n * a higher-order Observable. Each time it observes one of these emitted inner\n * Observables, it subscribes to that and delivers all the values from the\n * inner Observable on the output Observable. The output Observable only\n * completes once all inner Observables have completed. Any error delivered by\n * a inner Observable will be immediately emitted on the output Observable.\n *\n * @example <caption>Spawn a new interval Observable for each click event, and blend their outputs as one Observable</caption>\n * var clicks = Rx.Observable.fromEvent(document, 'click');\n * var higherOrder = clicks.map((ev) => Rx.Observable.interval(1000));\n * var firstOrder = higherOrder.mergeAll();\n * firstOrder.subscribe(x => console.log(x));\n *\n * @example <caption>Count from 0 to 9 every second for each click, but only allow 2 concurrent timers</caption>\n * var clicks = Rx.Observable.fromEvent(document, 'click');\n * var higherOrder = clicks.map((ev) => Rx.Observable.interval(1000).take(10));\n * var firstOrder = higherOrder.mergeAll(2);\n * firstOrder.subscribe(x => console.log(x));\n *\n * @see {@link combineAll}\n * @see {@link concatAll}\n * @see {@link exhaust}\n * @see {@link merge}\n * @see {@link mergeMap}\n * @see {@link mergeMapTo}\n * @see {@link mergeScan}\n * @see {@link switch}\n * @see {@link zipAll}\n *\n * @param {number} [concurrent=Number.POSITIVE_INFINITY] Maximum number of inner\n * Observables being subscribed to concurrently.\n * @return {Observable} An Observable that emits values coming from all the\n * inner Observables emitted by the source Observable.\n * @method mergeAll\n * @owner Observable\n ",
            "range": [
              117,
              2096
            ],
            "loc": {
              "start": {
                "line": 3,
                "column": 0
              },
              "end": {
                "line": 46,
                "column": 3
              }
            }
          }
        ],
        "trailingComments": []
      },
      "specifiers": [],
      "source": null,
      "range": [
        2097,
        2267
      ],
      "loc": {
        "start": {
          "line": 47,
          "column": 0
        },
        "end": {
          "line": 50,
          "column": 1
        }
      },
      "leadingComments": [
        {
          "type": "Block",
          "value": "*\n * Converts a higher-order Observable into a first-order Observable which\n * concurrently delivers all values that are emitted on the inner Observables.\n *\n * <span class=\"informal\">Flattens an Observable-of-Observables.</span>\n *\n * <img src=\"./img/mergeAll.png\" width=\"100%\">\n *\n * `mergeAll` subscribes to an Observable that emits Observables, also known as\n * a higher-order Observable. Each time it observes one of these emitted inner\n * Observables, it subscribes to that and delivers all the values from the\n * inner Observable on the output Observable. The output Observable only\n * completes once all inner Observables have completed. Any error delivered by\n * a inner Observable will be immediately emitted on the output Observable.\n *\n * @example <caption>Spawn a new interval Observable for each click event, and blend their outputs as one Observable</caption>\n * var clicks = Rx.Observable.fromEvent(document, 'click');\n * var higherOrder = clicks.map((ev) => Rx.Observable.interval(1000));\n * var firstOrder = higherOrder.mergeAll();\n * firstOrder.subscribe(x => console.log(x));\n *\n * @example <caption>Count from 0 to 9 every second for each click, but only allow 2 concurrent timers</caption>\n * var clicks = Rx.Observable.fromEvent(document, 'click');\n * var higherOrder = clicks.map((ev) => Rx.Observable.interval(1000).take(10));\n * var firstOrder = higherOrder.mergeAll(2);\n * firstOrder.subscribe(x => console.log(x));\n *\n * @see {@link combineAll}\n * @see {@link concatAll}\n * @see {@link exhaust}\n * @see {@link merge}\n * @see {@link mergeMap}\n * @see {@link mergeMapTo}\n * @see {@link mergeScan}\n * @see {@link switch}\n * @see {@link zipAll}\n *\n * @param {number} [concurrent=Number.POSITIVE_INFINITY] Maximum number of inner\n * Observables being subscribed to concurrently.\n * @return {Observable} An Observable that emits values coming from all the\n * inner Observables emitted by the source Observable.\n * @method mergeAll\n * @owner Observable\n ",
          "range": [
            117,
            2096
          ],
          "loc": {
            "start": {
              "line": 3,
              "column": 0
            },
            "end": {
              "line": 46,
              "column": 3
            }
          }
        }
      ]
    },
    {
      "type": "ExportNamedDeclaration",
      "declaration": {
        "type": "VariableDeclaration",
        "declarations": [
          {
            "type": "VariableDeclarator",
            "id": {
              "type": "Identifier",
              "name": "MergeAllOperator",
              "range": [
                2279,
                2295
              ],
              "loc": {
                "start": {
                  "line": 51,
                  "column": 11
                },
                "end": {
                  "line": 51,
                  "column": 27
                }
              }
            },
            "init": {
              "type": "CallExpression",
              "callee": {
                "type": "FunctionExpression",
                "id": null,
                "params": [],
                "body": {
                  "type": "BlockStatement",
                  "body": [
                    {
                      "type": "FunctionDeclaration",
                      "id": {
                        "type": "Identifier",
                        "name": "MergeAllOperator",
                        "range": [
                          2326,
                          2342
                        ],
                        "loc": {
                          "start": {
                            "line": 52,
                            "column": 13
                          },
                          "end": {
                            "line": 52,
                            "column": 29
                          }
                        }
                      },
                      "params": [
                        {
                          "type": "Identifier",
                          "name": "concurrent",
                          "range": [
                            2343,
                            2353
                          ],
                          "loc": {
                            "start": {
                              "line": 52,
                              "column": 30
                            },
                            "end": {
                              "line": 52,
                              "column": 40
                            }
                          }
                        }
                      ],
                      "body": {
                        "type": "BlockStatement",
                        "body": [
                          {
                            "type": "ExpressionStatement",
                            "expression": {
                              "type": "AssignmentExpression",
                              "operator": "=",
                              "left": {
                                "type": "MemberExpression",
                                "computed": false,
                                "object": {
                                  "type": "ThisExpression",
                                  "range": [
                                    2365,
                                    2369
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 53,
                                      "column": 8
                                    },
                                    "end": {
                                      "line": 53,
                                      "column": 12
                                    }
                                  }
                                },
                                "property": {
                                  "type": "Identifier",
                                  "name": "concurrent",
                                  "range": [
                                    2370,
                                    2380
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 53,
                                      "column": 13
                                    },
                                    "end": {
                                      "line": 53,
                                      "column": 23
                                    }
                                  }
                                },
                                "range": [
                                  2365,
                                  2380
                                ],
                                "loc": {
                                  "start": {
                                    "line": 53,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 53,
                                    "column": 23
                                  }
                                }
                              },
                              "right": {
                                "type": "Identifier",
                                "name": "concurrent",
                                "range": [
                                  2383,
                                  2393
                                ],
                                "loc": {
                                  "start": {
                                    "line": 53,
                                    "column": 26
                                  },
                                  "end": {
                                    "line": 53,
                                    "column": 36
                                  }
                                }
                              },
                              "range": [
                                2365,
                                2393
                              ],
                              "loc": {
                                "start": {
                                  "line": 53,
                                  "column": 8
                                },
                                "end": {
                                  "line": 53,
                                  "column": 36
                                }
                              }
                            },
                            "range": [
                              2365,
                              2394
                            ],
                            "loc": {
                              "start": {
                                "line": 53,
                                "column": 8
                              },
                              "end": {
                                "line": 53,
                                "column": 37
                              }
                            }
                          }
                        ],
                        "range": [
                          2355,
                          2400
                        ],
                        "loc": {
                          "start": {
                            "line": 52,
                            "column": 42
                          },
                          "end": {
                            "line": 54,
                            "column": 5
                          }
                        }
                      },
                      "generator": false,
                      "expression": false,
                      "range": [
                        2317,
                        2400
                      ],
                      "loc": {
                        "start": {
                          "line": 52,
                          "column": 4
                        },
                        "end": {
                          "line": 54,
                          "column": 5
                        }
                      }
                    },
                    {
                      "type": "ExpressionStatement",
                      "expression": {
                        "type": "AssignmentExpression",
                        "operator": "=",
                        "left": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "MemberExpression",
                            "computed": false,
                            "object": {
                              "type": "Identifier",
                              "name": "MergeAllOperator",
                              "range": [
                                2405,
                                2421
                              ],
                              "loc": {
                                "start": {
                                  "line": 55,
                                  "column": 4
                                },
                                "end": {
                                  "line": 55,
                                  "column": 20
                                }
                              }
                            },
                            "property": {
                              "type": "Identifier",
                              "name": "prototype",
                              "range": [
                                2422,
                                2431
                              ],
                              "loc": {
                                "start": {
                                  "line": 55,
                                  "column": 21
                                },
                                "end": {
                                  "line": 55,
                                  "column": 30
                                }
                              }
                            },
                            "range": [
                              2405,
                              2431
                            ],
                            "loc": {
                              "start": {
                                "line": 55,
                                "column": 4
                              },
                              "end": {
                                "line": 55,
                                "column": 30
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "call",
                            "range": [
                              2432,
                              2436
                            ],
                            "loc": {
                              "start": {
                                "line": 55,
                                "column": 31
                              },
                              "end": {
                                "line": 55,
                                "column": 35
                              }
                            }
                          },
                          "range": [
                            2405,
                            2436
                          ],
                          "loc": {
                            "start": {
                              "line": 55,
                              "column": 4
                            },
                            "end": {
                              "line": 55,
                              "column": 35
                            }
                          }
                        },
                        "right": {
                          "type": "FunctionExpression",
                          "id": null,
                          "params": [
                            {
                              "type": "Identifier",
                              "name": "observer",
                              "range": [
                                2449,
                                2457
                              ],
                              "loc": {
                                "start": {
                                  "line": 55,
                                  "column": 48
                                },
                                "end": {
                                  "line": 55,
                                  "column": 56
                                }
                              }
                            },
                            {
                              "type": "Identifier",
                              "name": "source",
                              "range": [
                                2459,
                                2465
                              ],
                              "loc": {
                                "start": {
                                  "line": 55,
                                  "column": 58
                                },
                                "end": {
                                  "line": 55,
                                  "column": 64
                                }
                              }
                            }
                          ],
                          "body": {
                            "type": "BlockStatement",
                            "body": [
                              {
                                "type": "ReturnStatement",
                                "argument": {
                                  "type": "CallExpression",
                                  "callee": {
                                    "type": "MemberExpression",
                                    "computed": false,
                                    "object": {
                                      "type": "Identifier",
                                      "name": "source",
                                      "range": [
                                        2484,
                                        2490
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 56,
                                          "column": 15
                                        },
                                        "end": {
                                          "line": 56,
                                          "column": 21
                                        }
                                      }
                                    },
                                    "property": {
                                      "type": "Identifier",
                                      "name": "_subscribe",
                                      "range": [
                                        2491,
                                        2501
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 56,
                                          "column": 22
                                        },
                                        "end": {
                                          "line": 56,
                                          "column": 32
                                        }
                                      }
                                    },
                                    "range": [
                                      2484,
                                      2501
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 56,
                                        "column": 15
                                      },
                                      "end": {
                                        "line": 56,
                                        "column": 32
                                      }
                                    }
                                  },
                                  "arguments": [
                                    {
                                      "type": "NewExpression",
                                      "callee": {
                                        "type": "Identifier",
                                        "name": "MergeAllSubscriber",
                                        "range": [
                                          2506,
                                          2524
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 56,
                                            "column": 37
                                          },
                                          "end": {
                                            "line": 56,
                                            "column": 55
                                          }
                                        }
                                      },
                                      "arguments": [
                                        {
                                          "type": "Identifier",
                                          "name": "observer",
                                          "range": [
                                            2525,
                                            2533
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 56,
                                              "column": 56
                                            },
                                            "end": {
                                              "line": 56,
                                              "column": 64
                                            }
                                          }
                                        },
                                        {
                                          "type": "MemberExpression",
                                          "computed": false,
                                          "object": {
                                            "type": "ThisExpression",
                                            "range": [
                                              2535,
                                              2539
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 56,
                                                "column": 66
                                              },
                                              "end": {
                                                "line": 56,
                                                "column": 70
                                              }
                                            }
                                          },
                                          "property": {
                                            "type": "Identifier",
                                            "name": "concurrent",
                                            "range": [
                                              2540,
                                              2550
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 56,
                                                "column": 71
                                              },
                                              "end": {
                                                "line": 56,
                                                "column": 81
                                              }
                                            }
                                          },
                                          "range": [
                                            2535,
                                            2550
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 56,
                                              "column": 66
                                            },
                                            "end": {
                                              "line": 56,
                                              "column": 81
                                            }
                                          }
                                        }
                                      ],
                                      "range": [
                                        2502,
                                        2551
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 56,
                                          "column": 33
                                        },
                                        "end": {
                                          "line": 56,
                                          "column": 82
                                        }
                                      }
                                    }
                                  ],
                                  "range": [
                                    2484,
                                    2552
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 56,
                                      "column": 15
                                    },
                                    "end": {
                                      "line": 56,
                                      "column": 83
                                    }
                                  }
                                },
                                "range": [
                                  2477,
                                  2553
                                ],
                                "loc": {
                                  "start": {
                                    "line": 56,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 56,
                                    "column": 84
                                  }
                                }
                              }
                            ],
                            "range": [
                              2467,
                              2559
                            ],
                            "loc": {
                              "start": {
                                "line": 55,
                                "column": 66
                              },
                              "end": {
                                "line": 57,
                                "column": 5
                              }
                            }
                          },
                          "generator": false,
                          "expression": false,
                          "range": [
                            2439,
                            2559
                          ],
                          "loc": {
                            "start": {
                              "line": 55,
                              "column": 38
                            },
                            "end": {
                              "line": 57,
                              "column": 5
                            }
                          }
                        },
                        "range": [
                          2405,
                          2559
                        ],
                        "loc": {
                          "start": {
                            "line": 55,
                            "column": 4
                          },
                          "end": {
                            "line": 57,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        2405,
                        2560
                      ],
                      "loc": {
                        "start": {
                          "line": 55,
                          "column": 4
                        },
                        "end": {
                          "line": 57,
                          "column": 6
                        }
                      }
                    },
                    {
                      "type": "ReturnStatement",
                      "argument": {
                        "type": "Identifier",
                        "name": "MergeAllOperator",
                        "range": [
                          2572,
                          2588
                        ],
                        "loc": {
                          "start": {
                            "line": 58,
                            "column": 11
                          },
                          "end": {
                            "line": 58,
                            "column": 27
                          }
                        }
                      },
                      "range": [
                        2565,
                        2589
                      ],
                      "loc": {
                        "start": {
                          "line": 58,
                          "column": 4
                        },
                        "end": {
                          "line": 58,
                          "column": 28
                        }
                      }
                    }
                  ],
                  "range": [
                    2311,
                    2591
                  ],
                  "loc": {
                    "start": {
                      "line": 51,
                      "column": 43
                    },
                    "end": {
                      "line": 59,
                      "column": 1
                    }
                  }
                },
                "generator": false,
                "expression": false,
                "range": [
                  2299,
                  2591
                ],
                "loc": {
                  "start": {
                    "line": 51,
                    "column": 31
                  },
                  "end": {
                    "line": 59,
                    "column": 1
                  }
                }
              },
              "arguments": [],
              "range": [
                2299,
                2593
              ],
              "loc": {
                "start": {
                  "line": 51,
                  "column": 31
                },
                "end": {
                  "line": 59,
                  "column": 3
                }
              }
            },
            "range": [
              2279,
              2594
            ],
            "loc": {
              "start": {
                "line": 51,
                "column": 11
              },
              "end": {
                "line": 59,
                "column": 4
              }
            }
          }
        ],
        "kind": "var",
        "range": [
          2275,
          2595
        ],
        "loc": {
          "start": {
            "line": 51,
            "column": 7
          },
          "end": {
            "line": 59,
            "column": 5
          }
        },
        "leadingComments": [],
        "trailingComments": [
          {
            "type": "Block",
            "value": "*\n * We need this JSDoc comment for affecting ESDoc.\n * @ignore\n * @extends {Ignored}\n ",
            "range": [
              2596,
              2687
            ],
            "loc": {
              "start": {
                "line": 60,
                "column": 0
              },
              "end": {
                "line": 64,
                "column": 3
              }
            }
          }
        ]
      },
      "specifiers": [],
      "source": null,
      "range": [
        2268,
        2595
      ],
      "loc": {
        "start": {
          "line": 51,
          "column": 0
        },
        "end": {
          "line": 59,
          "column": 5
        }
      },
      "trailingComments": [
        {
          "type": "Block",
          "value": "*\n * We need this JSDoc comment for affecting ESDoc.\n * @ignore\n * @extends {Ignored}\n ",
          "range": [
            2596,
            2687
          ],
          "loc": {
            "start": {
              "line": 60,
              "column": 0
            },
            "end": {
              "line": 64,
              "column": 3
            }
          }
        }
      ]
    },
    {
      "type": "ExportNamedDeclaration",
      "declaration": {
        "type": "VariableDeclaration",
        "declarations": [
          {
            "type": "VariableDeclarator",
            "id": {
              "type": "Identifier",
              "name": "MergeAllSubscriber",
              "range": [
                2699,
                2717
              ],
              "loc": {
                "start": {
                  "line": 65,
                  "column": 11
                },
                "end": {
                  "line": 65,
                  "column": 29
                }
              }
            },
            "init": {
              "type": "CallExpression",
              "callee": {
                "type": "FunctionExpression",
                "id": null,
                "params": [
                  {
                    "type": "Identifier",
                    "name": "_super",
                    "range": [
                      2731,
                      2737
                    ],
                    "loc": {
                      "start": {
                        "line": 65,
                        "column": 43
                      },
                      "end": {
                        "line": 65,
                        "column": 49
                      }
                    }
                  }
                ],
                "body": {
                  "type": "BlockStatement",
                  "body": [
                    {
                      "type": "ExpressionStatement",
                      "expression": {
                        "type": "CallExpression",
                        "callee": {
                          "type": "Identifier",
                          "name": "__extends",
                          "range": [
                            2745,
                            2754
                          ],
                          "loc": {
                            "start": {
                              "line": 66,
                              "column": 4
                            },
                            "end": {
                              "line": 66,
                              "column": 13
                            }
                          }
                        },
                        "arguments": [
                          {
                            "type": "Identifier",
                            "name": "MergeAllSubscriber",
                            "range": [
                              2755,
                              2773
                            ],
                            "loc": {
                              "start": {
                                "line": 66,
                                "column": 14
                              },
                              "end": {
                                "line": 66,
                                "column": 32
                              }
                            }
                          },
                          {
                            "type": "Identifier",
                            "name": "_super",
                            "range": [
                              2775,
                              2781
                            ],
                            "loc": {
                              "start": {
                                "line": 66,
                                "column": 34
                              },
                              "end": {
                                "line": 66,
                                "column": 40
                              }
                            }
                          }
                        ],
                        "range": [
                          2745,
                          2782
                        ],
                        "loc": {
                          "start": {
                            "line": 66,
                            "column": 4
                          },
                          "end": {
                            "line": 66,
                            "column": 41
                          }
                        }
                      },
                      "range": [
                        2745,
                        2783
                      ],
                      "loc": {
                        "start": {
                          "line": 66,
                          "column": 4
                        },
                        "end": {
                          "line": 66,
                          "column": 42
                        }
                      }
                    },
                    {
                      "type": "FunctionDeclaration",
                      "id": {
                        "type": "Identifier",
                        "name": "MergeAllSubscriber",
                        "range": [
                          2797,
                          2815
                        ],
                        "loc": {
                          "start": {
                            "line": 67,
                            "column": 13
                          },
                          "end": {
                            "line": 67,
                            "column": 31
                          }
                        }
                      },
                      "params": [
                        {
                          "type": "Identifier",
                          "name": "destination",
                          "range": [
                            2816,
                            2827
                          ],
                          "loc": {
                            "start": {
                              "line": 67,
                              "column": 32
                            },
                            "end": {
                              "line": 67,
                              "column": 43
                            }
                          }
                        },
                        {
                          "type": "Identifier",
                          "name": "concurrent",
                          "range": [
                            2829,
                            2839
                          ],
                          "loc": {
                            "start": {
                              "line": 67,
                              "column": 45
                            },
                            "end": {
                              "line": 67,
                              "column": 55
                            }
                          }
                        }
                      ],
                      "body": {
                        "type": "BlockStatement",
                        "body": [
                          {
                            "type": "ExpressionStatement",
                            "expression": {
                              "type": "CallExpression",
                              "callee": {
                                "type": "MemberExpression",
                                "computed": false,
                                "object": {
                                  "type": "Identifier",
                                  "name": "_super",
                                  "range": [
                                    2851,
                                    2857
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 68,
                                      "column": 8
                                    },
                                    "end": {
                                      "line": 68,
                                      "column": 14
                                    }
                                  }
                                },
                                "property": {
                                  "type": "Identifier",
                                  "name": "call",
                                  "range": [
                                    2858,
                                    2862
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 68,
                                      "column": 15
                                    },
                                    "end": {
                                      "line": 68,
                                      "column": 19
                                    }
                                  }
                                },
                                "range": [
                                  2851,
                                  2862
                                ],
                                "loc": {
                                  "start": {
                                    "line": 68,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 68,
                                    "column": 19
                                  }
                                }
                              },
                              "arguments": [
                                {
                                  "type": "ThisExpression",
                                  "range": [
                                    2863,
                                    2867
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 68,
                                      "column": 20
                                    },
                                    "end": {
                                      "line": 68,
                                      "column": 24
                                    }
                                  }
                                },
                                {
                                  "type": "Identifier",
                                  "name": "destination",
                                  "range": [
                                    2869,
                                    2880
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 68,
                                      "column": 26
                                    },
                                    "end": {
                                      "line": 68,
                                      "column": 37
                                    }
                                  }
                                }
                              ],
                              "range": [
                                2851,
                                2881
                              ],
                              "loc": {
                                "start": {
                                  "line": 68,
                                  "column": 8
                                },
                                "end": {
                                  "line": 68,
                                  "column": 38
                                }
                              }
                            },
                            "range": [
                              2851,
                              2882
                            ],
                            "loc": {
                              "start": {
                                "line": 68,
                                "column": 8
                              },
                              "end": {
                                "line": 68,
                                "column": 39
                              }
                            }
                          },
                          {
                            "type": "ExpressionStatement",
                            "expression": {
                              "type": "AssignmentExpression",
                              "operator": "=",
                              "left": {
                                "type": "MemberExpression",
                                "computed": false,
                                "object": {
                                  "type": "ThisExpression",
                                  "range": [
                                    2891,
                                    2895
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 69,
                                      "column": 8
                                    },
                                    "end": {
                                      "line": 69,
                                      "column": 12
                                    }
                                  }
                                },
                                "property": {
                                  "type": "Identifier",
                                  "name": "concurrent",
                                  "range": [
                                    2896,
                                    2906
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 69,
                                      "column": 13
                                    },
                                    "end": {
                                      "line": 69,
                                      "column": 23
                                    }
                                  }
                                },
                                "range": [
                                  2891,
                                  2906
                                ],
                                "loc": {
                                  "start": {
                                    "line": 69,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 69,
                                    "column": 23
                                  }
                                }
                              },
                              "right": {
                                "type": "Identifier",
                                "name": "concurrent",
                                "range": [
                                  2909,
                                  2919
                                ],
                                "loc": {
                                  "start": {
                                    "line": 69,
                                    "column": 26
                                  },
                                  "end": {
                                    "line": 69,
                                    "column": 36
                                  }
                                }
                              },
                              "range": [
                                2891,
                                2919
                              ],
                              "loc": {
                                "start": {
                                  "line": 69,
                                  "column": 8
                                },
                                "end": {
                                  "line": 69,
                                  "column": 36
                                }
                              }
                            },
                            "range": [
                              2891,
                              2920
                            ],
                            "loc": {
                              "start": {
                                "line": 69,
                                "column": 8
                              },
                              "end": {
                                "line": 69,
                                "column": 37
                              }
                            }
                          },
                          {
                            "type": "ExpressionStatement",
                            "expression": {
                              "type": "AssignmentExpression",
                              "operator": "=",
                              "left": {
                                "type": "MemberExpression",
                                "computed": false,
                                "object": {
                                  "type": "ThisExpression",
                                  "range": [
                                    2929,
                                    2933
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 70,
                                      "column": 8
                                    },
                                    "end": {
                                      "line": 70,
                                      "column": 12
                                    }
                                  }
                                },
                                "property": {
                                  "type": "Identifier",
                                  "name": "hasCompleted",
                                  "range": [
                                    2934,
                                    2946
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 70,
                                      "column": 13
                                    },
                                    "end": {
                                      "line": 70,
                                      "column": 25
                                    }
                                  }
                                },
                                "range": [
                                  2929,
                                  2946
                                ],
                                "loc": {
                                  "start": {
                                    "line": 70,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 70,
                                    "column": 25
                                  }
                                }
                              },
                              "right": {
                                "type": "Literal",
                                "value": false,
                                "raw": "false",
                                "range": [
                                  2949,
                                  2954
                                ],
                                "loc": {
                                  "start": {
                                    "line": 70,
                                    "column": 28
                                  },
                                  "end": {
                                    "line": 70,
                                    "column": 33
                                  }
                                }
                              },
                              "range": [
                                2929,
                                2954
                              ],
                              "loc": {
                                "start": {
                                  "line": 70,
                                  "column": 8
                                },
                                "end": {
                                  "line": 70,
                                  "column": 33
                                }
                              }
                            },
                            "range": [
                              2929,
                              2955
                            ],
                            "loc": {
                              "start": {
                                "line": 70,
                                "column": 8
                              },
                              "end": {
                                "line": 70,
                                "column": 34
                              }
                            }
                          },
                          {
                            "type": "ExpressionStatement",
                            "expression": {
                              "type": "AssignmentExpression",
                              "operator": "=",
                              "left": {
                                "type": "MemberExpression",
                                "computed": false,
                                "object": {
                                  "type": "ThisExpression",
                                  "range": [
                                    2964,
                                    2968
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 71,
                                      "column": 8
                                    },
                                    "end": {
                                      "line": 71,
                                      "column": 12
                                    }
                                  }
                                },
                                "property": {
                                  "type": "Identifier",
                                  "name": "buffer",
                                  "range": [
                                    2969,
                                    2975
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 71,
                                      "column": 13
                                    },
                                    "end": {
                                      "line": 71,
                                      "column": 19
                                    }
                                  }
                                },
                                "range": [
                                  2964,
                                  2975
                                ],
                                "loc": {
                                  "start": {
                                    "line": 71,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 71,
                                    "column": 19
                                  }
                                }
                              },
                              "right": {
                                "type": "ArrayExpression",
                                "elements": [],
                                "range": [
                                  2978,
                                  2980
                                ],
                                "loc": {
                                  "start": {
                                    "line": 71,
                                    "column": 22
                                  },
                                  "end": {
                                    "line": 71,
                                    "column": 24
                                  }
                                }
                              },
                              "range": [
                                2964,
                                2980
                              ],
                              "loc": {
                                "start": {
                                  "line": 71,
                                  "column": 8
                                },
                                "end": {
                                  "line": 71,
                                  "column": 24
                                }
                              }
                            },
                            "range": [
                              2964,
                              2981
                            ],
                            "loc": {
                              "start": {
                                "line": 71,
                                "column": 8
                              },
                              "end": {
                                "line": 71,
                                "column": 25
                              }
                            }
                          },
                          {
                            "type": "ExpressionStatement",
                            "expression": {
                              "type": "AssignmentExpression",
                              "operator": "=",
                              "left": {
                                "type": "MemberExpression",
                                "computed": false,
                                "object": {
                                  "type": "ThisExpression",
                                  "range": [
                                    2990,
                                    2994
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 72,
                                      "column": 8
                                    },
                                    "end": {
                                      "line": 72,
                                      "column": 12
                                    }
                                  }
                                },
                                "property": {
                                  "type": "Identifier",
                                  "name": "active",
                                  "range": [
                                    2995,
                                    3001
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 72,
                                      "column": 13
                                    },
                                    "end": {
                                      "line": 72,
                                      "column": 19
                                    }
                                  }
                                },
                                "range": [
                                  2990,
                                  3001
                                ],
                                "loc": {
                                  "start": {
                                    "line": 72,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 72,
                                    "column": 19
                                  }
                                }
                              },
                              "right": {
                                "type": "Literal",
                                "value": 0,
                                "raw": "0",
                                "range": [
                                  3004,
                                  3005
                                ],
                                "loc": {
                                  "start": {
                                    "line": 72,
                                    "column": 22
                                  },
                                  "end": {
                                    "line": 72,
                                    "column": 23
                                  }
                                }
                              },
                              "range": [
                                2990,
                                3005
                              ],
                              "loc": {
                                "start": {
                                  "line": 72,
                                  "column": 8
                                },
                                "end": {
                                  "line": 72,
                                  "column": 23
                                }
                              }
                            },
                            "range": [
                              2990,
                              3006
                            ],
                            "loc": {
                              "start": {
                                "line": 72,
                                "column": 8
                              },
                              "end": {
                                "line": 72,
                                "column": 24
                              }
                            }
                          }
                        ],
                        "range": [
                          2841,
                          3012
                        ],
                        "loc": {
                          "start": {
                            "line": 67,
                            "column": 57
                          },
                          "end": {
                            "line": 73,
                            "column": 5
                          }
                        }
                      },
                      "generator": false,
                      "expression": false,
                      "range": [
                        2788,
                        3012
                      ],
                      "loc": {
                        "start": {
                          "line": 67,
                          "column": 4
                        },
                        "end": {
                          "line": 73,
                          "column": 5
                        }
                      }
                    },
                    {
                      "type": "ExpressionStatement",
                      "expression": {
                        "type": "AssignmentExpression",
                        "operator": "=",
                        "left": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "MemberExpression",
                            "computed": false,
                            "object": {
                              "type": "Identifier",
                              "name": "MergeAllSubscriber",
                              "range": [
                                3017,
                                3035
                              ],
                              "loc": {
                                "start": {
                                  "line": 74,
                                  "column": 4
                                },
                                "end": {
                                  "line": 74,
                                  "column": 22
                                }
                              }
                            },
                            "property": {
                              "type": "Identifier",
                              "name": "prototype",
                              "range": [
                                3036,
                                3045
                              ],
                              "loc": {
                                "start": {
                                  "line": 74,
                                  "column": 23
                                },
                                "end": {
                                  "line": 74,
                                  "column": 32
                                }
                              }
                            },
                            "range": [
                              3017,
                              3045
                            ],
                            "loc": {
                              "start": {
                                "line": 74,
                                "column": 4
                              },
                              "end": {
                                "line": 74,
                                "column": 32
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "_next",
                            "range": [
                              3046,
                              3051
                            ],
                            "loc": {
                              "start": {
                                "line": 74,
                                "column": 33
                              },
                              "end": {
                                "line": 74,
                                "column": 38
                              }
                            }
                          },
                          "range": [
                            3017,
                            3051
                          ],
                          "loc": {
                            "start": {
                              "line": 74,
                              "column": 4
                            },
                            "end": {
                              "line": 74,
                              "column": 38
                            }
                          }
                        },
                        "right": {
                          "type": "FunctionExpression",
                          "id": null,
                          "params": [
                            {
                              "type": "Identifier",
                              "name": "observable",
                              "range": [
                                3064,
                                3074
                              ],
                              "loc": {
                                "start": {
                                  "line": 74,
                                  "column": 51
                                },
                                "end": {
                                  "line": 74,
                                  "column": 61
                                }
                              }
                            }
                          ],
                          "body": {
                            "type": "BlockStatement",
                            "body": [
                              {
                                "type": "IfStatement",
                                "test": {
                                  "type": "BinaryExpression",
                                  "operator": "<",
                                  "left": {
                                    "type": "MemberExpression",
                                    "computed": false,
                                    "object": {
                                      "type": "ThisExpression",
                                      "range": [
                                        3090,
                                        3094
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 75,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 75,
                                          "column": 16
                                        }
                                      }
                                    },
                                    "property": {
                                      "type": "Identifier",
                                      "name": "active",
                                      "range": [
                                        3095,
                                        3101
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 75,
                                          "column": 17
                                        },
                                        "end": {
                                          "line": 75,
                                          "column": 23
                                        }
                                      }
                                    },
                                    "range": [
                                      3090,
                                      3101
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 75,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 75,
                                        "column": 23
                                      }
                                    }
                                  },
                                  "right": {
                                    "type": "MemberExpression",
                                    "computed": false,
                                    "object": {
                                      "type": "ThisExpression",
                                      "range": [
                                        3104,
                                        3108
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 75,
                                          "column": 26
                                        },
                                        "end": {
                                          "line": 75,
                                          "column": 30
                                        }
                                      }
                                    },
                                    "property": {
                                      "type": "Identifier",
                                      "name": "concurrent",
                                      "range": [
                                        3109,
                                        3119
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 75,
                                          "column": 31
                                        },
                                        "end": {
                                          "line": 75,
                                          "column": 41
                                        }
                                      }
                                    },
                                    "range": [
                                      3104,
                                      3119
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 75,
                                        "column": 26
                                      },
                                      "end": {
                                        "line": 75,
                                        "column": 41
                                      }
                                    }
                                  },
                                  "range": [
                                    3090,
                                    3119
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 75,
                                      "column": 12
                                    },
                                    "end": {
                                      "line": 75,
                                      "column": 41
                                    }
                                  }
                                },
                                "consequent": {
                                  "type": "BlockStatement",
                                  "body": [
                                    {
                                      "type": "ExpressionStatement",
                                      "expression": {
                                        "type": "UpdateExpression",
                                        "operator": "++",
                                        "argument": {
                                          "type": "MemberExpression",
                                          "computed": false,
                                          "object": {
                                            "type": "ThisExpression",
                                            "range": [
                                              3135,
                                              3139
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 76,
                                                "column": 12
                                              },
                                              "end": {
                                                "line": 76,
                                                "column": 16
                                              }
                                            }
                                          },
                                          "property": {
                                            "type": "Identifier",
                                            "name": "active",
                                            "range": [
                                              3140,
                                              3146
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 76,
                                                "column": 17
                                              },
                                              "end": {
                                                "line": 76,
                                                "column": 23
                                              }
                                            }
                                          },
                                          "range": [
                                            3135,
                                            3146
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 76,
                                              "column": 12
                                            },
                                            "end": {
                                              "line": 76,
                                              "column": 23
                                            }
                                          }
                                        },
                                        "prefix": false,
                                        "range": [
                                          3135,
                                          3148
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 76,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 76,
                                            "column": 25
                                          }
                                        }
                                      },
                                      "range": [
                                        3135,
                                        3149
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 76,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 76,
                                          "column": 26
                                        }
                                      }
                                    },
                                    {
                                      "type": "ExpressionStatement",
                                      "expression": {
                                        "type": "CallExpression",
                                        "callee": {
                                          "type": "MemberExpression",
                                          "computed": false,
                                          "object": {
                                            "type": "ThisExpression",
                                            "range": [
                                              3162,
                                              3166
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 77,
                                                "column": 12
                                              },
                                              "end": {
                                                "line": 77,
                                                "column": 16
                                              }
                                            }
                                          },
                                          "property": {
                                            "type": "Identifier",
                                            "name": "add",
                                            "range": [
                                              3167,
                                              3170
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 77,
                                                "column": 17
                                              },
                                              "end": {
                                                "line": 77,
                                                "column": 20
                                              }
                                            }
                                          },
                                          "range": [
                                            3162,
                                            3170
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 77,
                                              "column": 12
                                            },
                                            "end": {
                                              "line": 77,
                                              "column": 20
                                            }
                                          }
                                        },
                                        "arguments": [
                                          {
                                            "type": "CallExpression",
                                            "callee": {
                                              "type": "Identifier",
                                              "name": "subscribeToResult",
                                              "range": [
                                                3171,
                                                3188
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 77,
                                                  "column": 21
                                                },
                                                "end": {
                                                  "line": 77,
                                                  "column": 38
                                                }
                                              }
                                            },
                                            "arguments": [
                                              {
                                                "type": "ThisExpression",
                                                "range": [
                                                  3189,
                                                  3193
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 77,
                                                    "column": 39
                                                  },
                                                  "end": {
                                                    "line": 77,
                                                    "column": 43
                                                  }
                                                }
                                              },
                                              {
                                                "type": "Identifier",
                                                "name": "observable",
                                                "range": [
                                                  3195,
                                                  3205
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 77,
                                                    "column": 45
                                                  },
                                                  "end": {
                                                    "line": 77,
                                                    "column": 55
                                                  }
                                                }
                                              }
                                            ],
                                            "range": [
                                              3171,
                                              3206
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 77,
                                                "column": 21
                                              },
                                              "end": {
                                                "line": 77,
                                                "column": 56
                                              }
                                            }
                                          }
                                        ],
                                        "range": [
                                          3162,
                                          3207
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 77,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 77,
                                            "column": 57
                                          }
                                        }
                                      },
                                      "range": [
                                        3162,
                                        3208
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 77,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 77,
                                          "column": 58
                                        }
                                      }
                                    }
                                  ],
                                  "range": [
                                    3121,
                                    3218
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 75,
                                      "column": 43
                                    },
                                    "end": {
                                      "line": 78,
                                      "column": 9
                                    }
                                  }
                                },
                                "alternate": {
                                  "type": "BlockStatement",
                                  "body": [
                                    {
                                      "type": "ExpressionStatement",
                                      "expression": {
                                        "type": "CallExpression",
                                        "callee": {
                                          "type": "MemberExpression",
                                          "computed": false,
                                          "object": {
                                            "type": "MemberExpression",
                                            "computed": false,
                                            "object": {
                                              "type": "ThisExpression",
                                              "range": [
                                                3246,
                                                3250
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 80,
                                                  "column": 12
                                                },
                                                "end": {
                                                  "line": 80,
                                                  "column": 16
                                                }
                                              }
                                            },
                                            "property": {
                                              "type": "Identifier",
                                              "name": "buffer",
                                              "range": [
                                                3251,
                                                3257
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 80,
                                                  "column": 17
                                                },
                                                "end": {
                                                  "line": 80,
                                                  "column": 23
                                                }
                                              }
                                            },
                                            "range": [
                                              3246,
                                              3257
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 80,
                                                "column": 12
                                              },
                                              "end": {
                                                "line": 80,
                                                "column": 23
                                              }
                                            }
                                          },
                                          "property": {
                                            "type": "Identifier",
                                            "name": "push",
                                            "range": [
                                              3258,
                                              3262
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 80,
                                                "column": 24
                                              },
                                              "end": {
                                                "line": 80,
                                                "column": 28
                                              }
                                            }
                                          },
                                          "range": [
                                            3246,
                                            3262
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 80,
                                              "column": 12
                                            },
                                            "end": {
                                              "line": 80,
                                              "column": 28
                                            }
                                          }
                                        },
                                        "arguments": [
                                          {
                                            "type": "Identifier",
                                            "name": "observable",
                                            "range": [
                                              3263,
                                              3273
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 80,
                                                "column": 29
                                              },
                                              "end": {
                                                "line": 80,
                                                "column": 39
                                              }
                                            }
                                          }
                                        ],
                                        "range": [
                                          3246,
                                          3274
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 80,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 80,
                                            "column": 40
                                          }
                                        }
                                      },
                                      "range": [
                                        3246,
                                        3275
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 80,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 80,
                                          "column": 41
                                        }
                                      }
                                    }
                                  ],
                                  "range": [
                                    3232,
                                    3285
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 79,
                                      "column": 13
                                    },
                                    "end": {
                                      "line": 81,
                                      "column": 9
                                    }
                                  }
                                },
                                "range": [
                                  3086,
                                  3285
                                ],
                                "loc": {
                                  "start": {
                                    "line": 75,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 81,
                                    "column": 9
                                  }
                                }
                              }
                            ],
                            "range": [
                              3076,
                              3291
                            ],
                            "loc": {
                              "start": {
                                "line": 74,
                                "column": 63
                              },
                              "end": {
                                "line": 82,
                                "column": 5
                              }
                            }
                          },
                          "generator": false,
                          "expression": false,
                          "range": [
                            3054,
                            3291
                          ],
                          "loc": {
                            "start": {
                              "line": 74,
                              "column": 41
                            },
                            "end": {
                              "line": 82,
                              "column": 5
                            }
                          }
                        },
                        "range": [
                          3017,
                          3291
                        ],
                        "loc": {
                          "start": {
                            "line": 74,
                            "column": 4
                          },
                          "end": {
                            "line": 82,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        3017,
                        3292
                      ],
                      "loc": {
                        "start": {
                          "line": 74,
                          "column": 4
                        },
                        "end": {
                          "line": 82,
                          "column": 6
                        }
                      }
                    },
                    {
                      "type": "ExpressionStatement",
                      "expression": {
                        "type": "AssignmentExpression",
                        "operator": "=",
                        "left": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "MemberExpression",
                            "computed": false,
                            "object": {
                              "type": "Identifier",
                              "name": "MergeAllSubscriber",
                              "range": [
                                3297,
                                3315
                              ],
                              "loc": {
                                "start": {
                                  "line": 83,
                                  "column": 4
                                },
                                "end": {
                                  "line": 83,
                                  "column": 22
                                }
                              }
                            },
                            "property": {
                              "type": "Identifier",
                              "name": "prototype",
                              "range": [
                                3316,
                                3325
                              ],
                              "loc": {
                                "start": {
                                  "line": 83,
                                  "column": 23
                                },
                                "end": {
                                  "line": 83,
                                  "column": 32
                                }
                              }
                            },
                            "range": [
                              3297,
                              3325
                            ],
                            "loc": {
                              "start": {
                                "line": 83,
                                "column": 4
                              },
                              "end": {
                                "line": 83,
                                "column": 32
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "_complete",
                            "range": [
                              3326,
                              3335
                            ],
                            "loc": {
                              "start": {
                                "line": 83,
                                "column": 33
                              },
                              "end": {
                                "line": 83,
                                "column": 42
                              }
                            }
                          },
                          "range": [
                            3297,
                            3335
                          ],
                          "loc": {
                            "start": {
                              "line": 83,
                              "column": 4
                            },
                            "end": {
                              "line": 83,
                              "column": 42
                            }
                          }
                        },
                        "right": {
                          "type": "FunctionExpression",
                          "id": null,
                          "params": [],
                          "body": {
                            "type": "BlockStatement",
                            "body": [
                              {
                                "type": "ExpressionStatement",
                                "expression": {
                                  "type": "AssignmentExpression",
                                  "operator": "=",
                                  "left": {
                                    "type": "MemberExpression",
                                    "computed": false,
                                    "object": {
                                      "type": "ThisExpression",
                                      "range": [
                                        3360,
                                        3364
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 84,
                                          "column": 8
                                        },
                                        "end": {
                                          "line": 84,
                                          "column": 12
                                        }
                                      }
                                    },
                                    "property": {
                                      "type": "Identifier",
                                      "name": "hasCompleted",
                                      "range": [
                                        3365,
                                        3377
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 84,
                                          "column": 13
                                        },
                                        "end": {
                                          "line": 84,
                                          "column": 25
                                        }
                                      }
                                    },
                                    "range": [
                                      3360,
                                      3377
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 84,
                                        "column": 8
                                      },
                                      "end": {
                                        "line": 84,
                                        "column": 25
                                      }
                                    }
                                  },
                                  "right": {
                                    "type": "Literal",
                                    "value": true,
                                    "raw": "true",
                                    "range": [
                                      3380,
                                      3384
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 84,
                                        "column": 28
                                      },
                                      "end": {
                                        "line": 84,
                                        "column": 32
                                      }
                                    }
                                  },
                                  "range": [
                                    3360,
                                    3384
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 84,
                                      "column": 8
                                    },
                                    "end": {
                                      "line": 84,
                                      "column": 32
                                    }
                                  }
                                },
                                "range": [
                                  3360,
                                  3385
                                ],
                                "loc": {
                                  "start": {
                                    "line": 84,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 84,
                                    "column": 33
                                  }
                                }
                              },
                              {
                                "type": "IfStatement",
                                "test": {
                                  "type": "LogicalExpression",
                                  "operator": "&&",
                                  "left": {
                                    "type": "BinaryExpression",
                                    "operator": "===",
                                    "left": {
                                      "type": "MemberExpression",
                                      "computed": false,
                                      "object": {
                                        "type": "ThisExpression",
                                        "range": [
                                          3398,
                                          3402
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 85,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 85,
                                            "column": 16
                                          }
                                        }
                                      },
                                      "property": {
                                        "type": "Identifier",
                                        "name": "active",
                                        "range": [
                                          3403,
                                          3409
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 85,
                                            "column": 17
                                          },
                                          "end": {
                                            "line": 85,
                                            "column": 23
                                          }
                                        }
                                      },
                                      "range": [
                                        3398,
                                        3409
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 85,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 85,
                                          "column": 23
                                        }
                                      }
                                    },
                                    "right": {
                                      "type": "Literal",
                                      "value": 0,
                                      "raw": "0",
                                      "range": [
                                        3414,
                                        3415
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 85,
                                          "column": 28
                                        },
                                        "end": {
                                          "line": 85,
                                          "column": 29
                                        }
                                      }
                                    },
                                    "range": [
                                      3398,
                                      3415
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 85,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 85,
                                        "column": 29
                                      }
                                    }
                                  },
                                  "right": {
                                    "type": "BinaryExpression",
                                    "operator": "===",
                                    "left": {
                                      "type": "MemberExpression",
                                      "computed": false,
                                      "object": {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "ThisExpression",
                                          "range": [
                                            3419,
                                            3423
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 85,
                                              "column": 33
                                            },
                                            "end": {
                                              "line": 85,
                                              "column": 37
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "buffer",
                                          "range": [
                                            3424,
                                            3430
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 85,
                                              "column": 38
                                            },
                                            "end": {
                                              "line": 85,
                                              "column": 44
                                            }
                                          }
                                        },
                                        "range": [
                                          3419,
                                          3430
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 85,
                                            "column": 33
                                          },
                                          "end": {
                                            "line": 85,
                                            "column": 44
                                          }
                                        }
                                      },
                                      "property": {
                                        "type": "Identifier",
                                        "name": "length",
                                        "range": [
                                          3431,
                                          3437
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 85,
                                            "column": 45
                                          },
                                          "end": {
                                            "line": 85,
                                            "column": 51
                                          }
                                        }
                                      },
                                      "range": [
                                        3419,
                                        3437
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 85,
                                          "column": 33
                                        },
                                        "end": {
                                          "line": 85,
                                          "column": 51
                                        }
                                      }
                                    },
                                    "right": {
                                      "type": "Literal",
                                      "value": 0,
                                      "raw": "0",
                                      "range": [
                                        3442,
                                        3443
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 85,
                                          "column": 56
                                        },
                                        "end": {
                                          "line": 85,
                                          "column": 57
                                        }
                                      }
                                    },
                                    "range": [
                                      3419,
                                      3443
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 85,
                                        "column": 33
                                      },
                                      "end": {
                                        "line": 85,
                                        "column": 57
                                      }
                                    }
                                  },
                                  "range": [
                                    3398,
                                    3443
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 85,
                                      "column": 12
                                    },
                                    "end": {
                                      "line": 85,
                                      "column": 57
                                    }
                                  }
                                },
                                "consequent": {
                                  "type": "BlockStatement",
                                  "body": [
                                    {
                                      "type": "ExpressionStatement",
                                      "expression": {
                                        "type": "CallExpression",
                                        "callee": {
                                          "type": "MemberExpression",
                                          "computed": false,
                                          "object": {
                                            "type": "MemberExpression",
                                            "computed": false,
                                            "object": {
                                              "type": "ThisExpression",
                                              "range": [
                                                3459,
                                                3463
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 86,
                                                  "column": 12
                                                },
                                                "end": {
                                                  "line": 86,
                                                  "column": 16
                                                }
                                              }
                                            },
                                            "property": {
                                              "type": "Identifier",
                                              "name": "destination",
                                              "range": [
                                                3464,
                                                3475
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 86,
                                                  "column": 17
                                                },
                                                "end": {
                                                  "line": 86,
                                                  "column": 28
                                                }
                                              }
                                            },
                                            "range": [
                                              3459,
                                              3475
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 86,
                                                "column": 12
                                              },
                                              "end": {
                                                "line": 86,
                                                "column": 28
                                              }
                                            }
                                          },
                                          "property": {
                                            "type": "Identifier",
                                            "name": "complete",
                                            "range": [
                                              3476,
                                              3484
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 86,
                                                "column": 29
                                              },
                                              "end": {
                                                "line": 86,
                                                "column": 37
                                              }
                                            }
                                          },
                                          "range": [
                                            3459,
                                            3484
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 86,
                                              "column": 12
                                            },
                                            "end": {
                                              "line": 86,
                                              "column": 37
                                            }
                                          }
                                        },
                                        "arguments": [],
                                        "range": [
                                          3459,
                                          3486
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 86,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 86,
                                            "column": 39
                                          }
                                        }
                                      },
                                      "range": [
                                        3459,
                                        3487
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 86,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 86,
                                          "column": 40
                                        }
                                      }
                                    }
                                  ],
                                  "range": [
                                    3445,
                                    3497
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 85,
                                      "column": 59
                                    },
                                    "end": {
                                      "line": 87,
                                      "column": 9
                                    }
                                  }
                                },
                                "alternate": null,
                                "range": [
                                  3394,
                                  3497
                                ],
                                "loc": {
                                  "start": {
                                    "line": 85,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 87,
                                    "column": 9
                                  }
                                }
                              }
                            ],
                            "range": [
                              3350,
                              3503
                            ],
                            "loc": {
                              "start": {
                                "line": 83,
                                "column": 57
                              },
                              "end": {
                                "line": 88,
                                "column": 5
                              }
                            }
                          },
                          "generator": false,
                          "expression": false,
                          "range": [
                            3338,
                            3503
                          ],
                          "loc": {
                            "start": {
                              "line": 83,
                              "column": 45
                            },
                            "end": {
                              "line": 88,
                              "column": 5
                            }
                          }
                        },
                        "range": [
                          3297,
                          3503
                        ],
                        "loc": {
                          "start": {
                            "line": 83,
                            "column": 4
                          },
                          "end": {
                            "line": 88,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        3297,
                        3504
                      ],
                      "loc": {
                        "start": {
                          "line": 83,
                          "column": 4
                        },
                        "end": {
                          "line": 88,
                          "column": 6
                        }
                      }
                    },
                    {
                      "type": "ExpressionStatement",
                      "expression": {
                        "type": "AssignmentExpression",
                        "operator": "=",
                        "left": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "MemberExpression",
                            "computed": false,
                            "object": {
                              "type": "Identifier",
                              "name": "MergeAllSubscriber",
                              "range": [
                                3509,
                                3527
                              ],
                              "loc": {
                                "start": {
                                  "line": 89,
                                  "column": 4
                                },
                                "end": {
                                  "line": 89,
                                  "column": 22
                                }
                              }
                            },
                            "property": {
                              "type": "Identifier",
                              "name": "prototype",
                              "range": [
                                3528,
                                3537
                              ],
                              "loc": {
                                "start": {
                                  "line": 89,
                                  "column": 23
                                },
                                "end": {
                                  "line": 89,
                                  "column": 32
                                }
                              }
                            },
                            "range": [
                              3509,
                              3537
                            ],
                            "loc": {
                              "start": {
                                "line": 89,
                                "column": 4
                              },
                              "end": {
                                "line": 89,
                                "column": 32
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "notifyComplete",
                            "range": [
                              3538,
                              3552
                            ],
                            "loc": {
                              "start": {
                                "line": 89,
                                "column": 33
                              },
                              "end": {
                                "line": 89,
                                "column": 47
                              }
                            }
                          },
                          "range": [
                            3509,
                            3552
                          ],
                          "loc": {
                            "start": {
                              "line": 89,
                              "column": 4
                            },
                            "end": {
                              "line": 89,
                              "column": 47
                            }
                          }
                        },
                        "right": {
                          "type": "FunctionExpression",
                          "id": null,
                          "params": [
                            {
                              "type": "Identifier",
                              "name": "innerSub",
                              "range": [
                                3565,
                                3573
                              ],
                              "loc": {
                                "start": {
                                  "line": 89,
                                  "column": 60
                                },
                                "end": {
                                  "line": 89,
                                  "column": 68
                                }
                              }
                            }
                          ],
                          "body": {
                            "type": "BlockStatement",
                            "body": [
                              {
                                "type": "VariableDeclaration",
                                "declarations": [
                                  {
                                    "type": "VariableDeclarator",
                                    "id": {
                                      "type": "Identifier",
                                      "name": "buffer",
                                      "range": [
                                        3589,
                                        3595
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 90,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 90,
                                          "column": 18
                                        }
                                      }
                                    },
                                    "init": {
                                      "type": "MemberExpression",
                                      "computed": false,
                                      "object": {
                                        "type": "ThisExpression",
                                        "range": [
                                          3598,
                                          3602
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 90,
                                            "column": 21
                                          },
                                          "end": {
                                            "line": 90,
                                            "column": 25
                                          }
                                        }
                                      },
                                      "property": {
                                        "type": "Identifier",
                                        "name": "buffer",
                                        "range": [
                                          3603,
                                          3609
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 90,
                                            "column": 26
                                          },
                                          "end": {
                                            "line": 90,
                                            "column": 32
                                          }
                                        }
                                      },
                                      "range": [
                                        3598,
                                        3609
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 90,
                                          "column": 21
                                        },
                                        "end": {
                                          "line": 90,
                                          "column": 32
                                        }
                                      }
                                    },
                                    "range": [
                                      3589,
                                      3609
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 90,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 90,
                                        "column": 32
                                      }
                                    }
                                  }
                                ],
                                "kind": "var",
                                "range": [
                                  3585,
                                  3610
                                ],
                                "loc": {
                                  "start": {
                                    "line": 90,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 90,
                                    "column": 33
                                  }
                                }
                              },
                              {
                                "type": "ExpressionStatement",
                                "expression": {
                                  "type": "CallExpression",
                                  "callee": {
                                    "type": "MemberExpression",
                                    "computed": false,
                                    "object": {
                                      "type": "ThisExpression",
                                      "range": [
                                        3619,
                                        3623
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 91,
                                          "column": 8
                                        },
                                        "end": {
                                          "line": 91,
                                          "column": 12
                                        }
                                      }
                                    },
                                    "property": {
                                      "type": "Identifier",
                                      "name": "remove",
                                      "range": [
                                        3624,
                                        3630
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 91,
                                          "column": 13
                                        },
                                        "end": {
                                          "line": 91,
                                          "column": 19
                                        }
                                      }
                                    },
                                    "range": [
                                      3619,
                                      3630
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 91,
                                        "column": 8
                                      },
                                      "end": {
                                        "line": 91,
                                        "column": 19
                                      }
                                    }
                                  },
                                  "arguments": [
                                    {
                                      "type": "Identifier",
                                      "name": "innerSub",
                                      "range": [
                                        3631,
                                        3639
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 91,
                                          "column": 20
                                        },
                                        "end": {
                                          "line": 91,
                                          "column": 28
                                        }
                                      }
                                    }
                                  ],
                                  "range": [
                                    3619,
                                    3640
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 91,
                                      "column": 8
                                    },
                                    "end": {
                                      "line": 91,
                                      "column": 29
                                    }
                                  }
                                },
                                "range": [
                                  3619,
                                  3641
                                ],
                                "loc": {
                                  "start": {
                                    "line": 91,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 91,
                                    "column": 30
                                  }
                                }
                              },
                              {
                                "type": "ExpressionStatement",
                                "expression": {
                                  "type": "UpdateExpression",
                                  "operator": "--",
                                  "argument": {
                                    "type": "MemberExpression",
                                    "computed": false,
                                    "object": {
                                      "type": "ThisExpression",
                                      "range": [
                                        3650,
                                        3654
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 92,
                                          "column": 8
                                        },
                                        "end": {
                                          "line": 92,
                                          "column": 12
                                        }
                                      }
                                    },
                                    "property": {
                                      "type": "Identifier",
                                      "name": "active",
                                      "range": [
                                        3655,
                                        3661
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 92,
                                          "column": 13
                                        },
                                        "end": {
                                          "line": 92,
                                          "column": 19
                                        }
                                      }
                                    },
                                    "range": [
                                      3650,
                                      3661
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 92,
                                        "column": 8
                                      },
                                      "end": {
                                        "line": 92,
                                        "column": 19
                                      }
                                    }
                                  },
                                  "prefix": false,
                                  "range": [
                                    3650,
                                    3663
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 92,
                                      "column": 8
                                    },
                                    "end": {
                                      "line": 92,
                                      "column": 21
                                    }
                                  }
                                },
                                "range": [
                                  3650,
                                  3664
                                ],
                                "loc": {
                                  "start": {
                                    "line": 92,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 92,
                                    "column": 22
                                  }
                                }
                              },
                              {
                                "type": "IfStatement",
                                "test": {
                                  "type": "BinaryExpression",
                                  "operator": ">",
                                  "left": {
                                    "type": "MemberExpression",
                                    "computed": false,
                                    "object": {
                                      "type": "Identifier",
                                      "name": "buffer",
                                      "range": [
                                        3677,
                                        3683
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 93,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 93,
                                          "column": 18
                                        }
                                      }
                                    },
                                    "property": {
                                      "type": "Identifier",
                                      "name": "length",
                                      "range": [
                                        3684,
                                        3690
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 93,
                                          "column": 19
                                        },
                                        "end": {
                                          "line": 93,
                                          "column": 25
                                        }
                                      }
                                    },
                                    "range": [
                                      3677,
                                      3690
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 93,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 93,
                                        "column": 25
                                      }
                                    }
                                  },
                                  "right": {
                                    "type": "Literal",
                                    "value": 0,
                                    "raw": "0",
                                    "range": [
                                      3693,
                                      3694
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 93,
                                        "column": 28
                                      },
                                      "end": {
                                        "line": 93,
                                        "column": 29
                                      }
                                    }
                                  },
                                  "range": [
                                    3677,
                                    3694
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 93,
                                      "column": 12
                                    },
                                    "end": {
                                      "line": 93,
                                      "column": 29
                                    }
                                  }
                                },
                                "consequent": {
                                  "type": "BlockStatement",
                                  "body": [
                                    {
                                      "type": "ExpressionStatement",
                                      "expression": {
                                        "type": "CallExpression",
                                        "callee": {
                                          "type": "MemberExpression",
                                          "computed": false,
                                          "object": {
                                            "type": "ThisExpression",
                                            "range": [
                                              3710,
                                              3714
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 94,
                                                "column": 12
                                              },
                                              "end": {
                                                "line": 94,
                                                "column": 16
                                              }
                                            }
                                          },
                                          "property": {
                                            "type": "Identifier",
                                            "name": "_next",
                                            "range": [
                                              3715,
                                              3720
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 94,
                                                "column": 17
                                              },
                                              "end": {
                                                "line": 94,
                                                "column": 22
                                              }
                                            }
                                          },
                                          "range": [
                                            3710,
                                            3720
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 94,
                                              "column": 12
                                            },
                                            "end": {
                                              "line": 94,
                                              "column": 22
                                            }
                                          }
                                        },
                                        "arguments": [
                                          {
                                            "type": "CallExpression",
                                            "callee": {
                                              "type": "MemberExpression",
                                              "computed": false,
                                              "object": {
                                                "type": "Identifier",
                                                "name": "buffer",
                                                "range": [
                                                  3721,
                                                  3727
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 94,
                                                    "column": 23
                                                  },
                                                  "end": {
                                                    "line": 94,
                                                    "column": 29
                                                  }
                                                }
                                              },
                                              "property": {
                                                "type": "Identifier",
                                                "name": "shift",
                                                "range": [
                                                  3728,
                                                  3733
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 94,
                                                    "column": 30
                                                  },
                                                  "end": {
                                                    "line": 94,
                                                    "column": 35
                                                  }
                                                }
                                              },
                                              "range": [
                                                3721,
                                                3733
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 94,
                                                  "column": 23
                                                },
                                                "end": {
                                                  "line": 94,
                                                  "column": 35
                                                }
                                              }
                                            },
                                            "arguments": [],
                                            "range": [
                                              3721,
                                              3735
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 94,
                                                "column": 23
                                              },
                                              "end": {
                                                "line": 94,
                                                "column": 37
                                              }
                                            }
                                          }
                                        ],
                                        "range": [
                                          3710,
                                          3736
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 94,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 94,
                                            "column": 38
                                          }
                                        }
                                      },
                                      "range": [
                                        3710,
                                        3737
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 94,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 94,
                                          "column": 39
                                        }
                                      }
                                    }
                                  ],
                                  "range": [
                                    3696,
                                    3747
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 93,
                                      "column": 31
                                    },
                                    "end": {
                                      "line": 95,
                                      "column": 9
                                    }
                                  }
                                },
                                "alternate": {
                                  "type": "IfStatement",
                                  "test": {
                                    "type": "LogicalExpression",
                                    "operator": "&&",
                                    "left": {
                                      "type": "BinaryExpression",
                                      "operator": "===",
                                      "left": {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "ThisExpression",
                                          "range": [
                                            3765,
                                            3769
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 96,
                                              "column": 17
                                            },
                                            "end": {
                                              "line": 96,
                                              "column": 21
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "active",
                                          "range": [
                                            3770,
                                            3776
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 96,
                                              "column": 22
                                            },
                                            "end": {
                                              "line": 96,
                                              "column": 28
                                            }
                                          }
                                        },
                                        "range": [
                                          3765,
                                          3776
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 96,
                                            "column": 17
                                          },
                                          "end": {
                                            "line": 96,
                                            "column": 28
                                          }
                                        }
                                      },
                                      "right": {
                                        "type": "Literal",
                                        "value": 0,
                                        "raw": "0",
                                        "range": [
                                          3781,
                                          3782
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 96,
                                            "column": 33
                                          },
                                          "end": {
                                            "line": 96,
                                            "column": 34
                                          }
                                        }
                                      },
                                      "range": [
                                        3765,
                                        3782
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 96,
                                          "column": 17
                                        },
                                        "end": {
                                          "line": 96,
                                          "column": 34
                                        }
                                      }
                                    },
                                    "right": {
                                      "type": "MemberExpression",
                                      "computed": false,
                                      "object": {
                                        "type": "ThisExpression",
                                        "range": [
                                          3786,
                                          3790
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 96,
                                            "column": 38
                                          },
                                          "end": {
                                            "line": 96,
                                            "column": 42
                                          }
                                        }
                                      },
                                      "property": {
                                        "type": "Identifier",
                                        "name": "hasCompleted",
                                        "range": [
                                          3791,
                                          3803
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 96,
                                            "column": 43
                                          },
                                          "end": {
                                            "line": 96,
                                            "column": 55
                                          }
                                        }
                                      },
                                      "range": [
                                        3786,
                                        3803
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 96,
                                          "column": 38
                                        },
                                        "end": {
                                          "line": 96,
                                          "column": 55
                                        }
                                      }
                                    },
                                    "range": [
                                      3765,
                                      3803
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 96,
                                        "column": 17
                                      },
                                      "end": {
                                        "line": 96,
                                        "column": 55
                                      }
                                    }
                                  },
                                  "consequent": {
                                    "type": "BlockStatement",
                                    "body": [
                                      {
                                        "type": "ExpressionStatement",
                                        "expression": {
                                          "type": "CallExpression",
                                          "callee": {
                                            "type": "MemberExpression",
                                            "computed": false,
                                            "object": {
                                              "type": "MemberExpression",
                                              "computed": false,
                                              "object": {
                                                "type": "ThisExpression",
                                                "range": [
                                                  3819,
                                                  3823
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 97,
                                                    "column": 12
                                                  },
                                                  "end": {
                                                    "line": 97,
                                                    "column": 16
                                                  }
                                                }
                                              },
                                              "property": {
                                                "type": "Identifier",
                                                "name": "destination",
                                                "range": [
                                                  3824,
                                                  3835
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 97,
                                                    "column": 17
                                                  },
                                                  "end": {
                                                    "line": 97,
                                                    "column": 28
                                                  }
                                                }
                                              },
                                              "range": [
                                                3819,
                                                3835
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 97,
                                                  "column": 12
                                                },
                                                "end": {
                                                  "line": 97,
                                                  "column": 28
                                                }
                                              }
                                            },
                                            "property": {
                                              "type": "Identifier",
                                              "name": "complete",
                                              "range": [
                                                3836,
                                                3844
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 97,
                                                  "column": 29
                                                },
                                                "end": {
                                                  "line": 97,
                                                  "column": 37
                                                }
                                              }
                                            },
                                            "range": [
                                              3819,
                                              3844
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 97,
                                                "column": 12
                                              },
                                              "end": {
                                                "line": 97,
                                                "column": 37
                                              }
                                            }
                                          },
                                          "arguments": [],
                                          "range": [
                                            3819,
                                            3846
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 97,
                                              "column": 12
                                            },
                                            "end": {
                                              "line": 97,
                                              "column": 39
                                            }
                                          }
                                        },
                                        "range": [
                                          3819,
                                          3847
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 97,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 97,
                                            "column": 40
                                          }
                                        }
                                      }
                                    ],
                                    "range": [
                                      3805,
                                      3857
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 96,
                                        "column": 57
                                      },
                                      "end": {
                                        "line": 98,
                                        "column": 9
                                      }
                                    }
                                  },
                                  "alternate": null,
                                  "range": [
                                    3761,
                                    3857
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 96,
                                      "column": 13
                                    },
                                    "end": {
                                      "line": 98,
                                      "column": 9
                                    }
                                  }
                                },
                                "range": [
                                  3673,
                                  3857
                                ],
                                "loc": {
                                  "start": {
                                    "line": 93,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 98,
                                    "column": 9
                                  }
                                }
                              }
                            ],
                            "range": [
                              3575,
                              3863
                            ],
                            "loc": {
                              "start": {
                                "line": 89,
                                "column": 70
                              },
                              "end": {
                                "line": 99,
                                "column": 5
                              }
                            }
                          },
                          "generator": false,
                          "expression": false,
                          "range": [
                            3555,
                            3863
                          ],
                          "loc": {
                            "start": {
                              "line": 89,
                              "column": 50
                            },
                            "end": {
                              "line": 99,
                              "column": 5
                            }
                          }
                        },
                        "range": [
                          3509,
                          3863
                        ],
                        "loc": {
                          "start": {
                            "line": 89,
                            "column": 4
                          },
                          "end": {
                            "line": 99,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        3509,
                        3864
                      ],
                      "loc": {
                        "start": {
                          "line": 89,
                          "column": 4
                        },
                        "end": {
                          "line": 99,
                          "column": 6
                        }
                      }
                    },
                    {
                      "type": "ReturnStatement",
                      "argument": {
                        "type": "Identifier",
                        "name": "MergeAllSubscriber",
                        "range": [
                          3876,
                          3894
                        ],
                        "loc": {
                          "start": {
                            "line": 100,
                            "column": 11
                          },
                          "end": {
                            "line": 100,
                            "column": 29
                          }
                        }
                      },
                      "range": [
                        3869,
                        3895
                      ],
                      "loc": {
                        "start": {
                          "line": 100,
                          "column": 4
                        },
                        "end": {
                          "line": 100,
                          "column": 30
                        }
                      }
                    }
                  ],
                  "range": [
                    2739,
                    3897
                  ],
                  "loc": {
                    "start": {
                      "line": 65,
                      "column": 51
                    },
                    "end": {
                      "line": 101,
                      "column": 1
                    }
                  }
                },
                "generator": false,
                "expression": false,
                "range": [
                  2721,
                  3897
                ],
                "loc": {
                  "start": {
                    "line": 65,
                    "column": 33
                  },
                  "end": {
                    "line": 101,
                    "column": 1
                  }
                }
              },
              "arguments": [
                {
                  "type": "Identifier",
                  "name": "OuterSubscriber",
                  "range": [
                    3898,
                    3913
                  ],
                  "loc": {
                    "start": {
                      "line": 101,
                      "column": 2
                    },
                    "end": {
                      "line": 101,
                      "column": 17
                    }
                  }
                }
              ],
              "range": [
                2721,
                3914
              ],
              "loc": {
                "start": {
                  "line": 65,
                  "column": 33
                },
                "end": {
                  "line": 101,
                  "column": 18
                }
              }
            },
            "range": [
              2699,
              3915
            ],
            "loc": {
              "start": {
                "line": 65,
                "column": 11
              },
              "end": {
                "line": 101,
                "column": 19
              }
            }
          }
        ],
        "kind": "var",
        "range": [
          2695,
          3916
        ],
        "loc": {
          "start": {
            "line": 65,
            "column": 7
          },
          "end": {
            "line": 101,
            "column": 20
          }
        },
        "leadingComments": [
          {
            "type": "Block",
            "value": "*\n * We need this JSDoc comment for affecting ESDoc.\n * @ignore\n * @extends {Ignored}\n ",
            "range": [
              2596,
              2687
            ],
            "loc": {
              "start": {
                "line": 60,
                "column": 0
              },
              "end": {
                "line": 64,
                "column": 3
              }
            }
          }
        ],
        "trailingComments": [
          {
            "type": "Line",
            "value": "# sourceMappingURL=mergeAll.js.map",
            "range": [
              3917,
              3953
            ],
            "loc": {
              "start": {
                "line": 102,
                "column": 0
              },
              "end": {
                "line": 102,
                "column": 36
              }
            }
          }
        ]
      },
      "specifiers": [],
      "source": null,
      "range": [
        2688,
        3916
      ],
      "loc": {
        "start": {
          "line": 65,
          "column": 0
        },
        "end": {
          "line": 101,
          "column": 20
        }
      },
      "leadingComments": [
        {
          "type": "Block",
          "value": "*\n * We need this JSDoc comment for affecting ESDoc.\n * @ignore\n * @extends {Ignored}\n ",
          "range": [
            2596,
            2687
          ],
          "loc": {
            "start": {
              "line": 60,
              "column": 0
            },
            "end": {
              "line": 64,
              "column": 3
            }
          }
        }
      ],
      "trailingComments": [
        {
          "type": "Line",
          "value": "# sourceMappingURL=mergeAll.js.map",
          "range": [
            3917,
            3953
          ],
          "loc": {
            "start": {
              "line": 102,
              "column": 0
            },
            "end": {
              "line": 102,
              "column": 36
            }
          }
        }
      ]
    }
  ],
  "sourceType": "module",
  "range": [
    0,
    3916
  ],
  "loc": {
    "start": {
      "line": 1,
      "column": 0
    },
    "end": {
      "line": 101,
      "column": 20
    }
  },
  "comments": [
    {
      "type": "Block",
      "value": "*\n * Converts a higher-order Observable into a first-order Observable which\n * concurrently delivers all values that are emitted on the inner Observables.\n *\n * <span class=\"informal\">Flattens an Observable-of-Observables.</span>\n *\n * <img src=\"./img/mergeAll.png\" width=\"100%\">\n *\n * `mergeAll` subscribes to an Observable that emits Observables, also known as\n * a higher-order Observable. Each time it observes one of these emitted inner\n * Observables, it subscribes to that and delivers all the values from the\n * inner Observable on the output Observable. The output Observable only\n * completes once all inner Observables have completed. Any error delivered by\n * a inner Observable will be immediately emitted on the output Observable.\n *\n * @example <caption>Spawn a new interval Observable for each click event, and blend their outputs as one Observable</caption>\n * var clicks = Rx.Observable.fromEvent(document, 'click');\n * var higherOrder = clicks.map((ev) => Rx.Observable.interval(1000));\n * var firstOrder = higherOrder.mergeAll();\n * firstOrder.subscribe(x => console.log(x));\n *\n * @example <caption>Count from 0 to 9 every second for each click, but only allow 2 concurrent timers</caption>\n * var clicks = Rx.Observable.fromEvent(document, 'click');\n * var higherOrder = clicks.map((ev) => Rx.Observable.interval(1000).take(10));\n * var firstOrder = higherOrder.mergeAll(2);\n * firstOrder.subscribe(x => console.log(x));\n *\n * @see {@link combineAll}\n * @see {@link concatAll}\n * @see {@link exhaust}\n * @see {@link merge}\n * @see {@link mergeMap}\n * @see {@link mergeMapTo}\n * @see {@link mergeScan}\n * @see {@link switch}\n * @see {@link zipAll}\n *\n * @param {number} [concurrent=Number.POSITIVE_INFINITY] Maximum number of inner\n * Observables being subscribed to concurrently.\n * @return {Observable} An Observable that emits values coming from all the\n * inner Observables emitted by the source Observable.\n * @method mergeAll\n * @owner Observable\n ",
      "range": [
        117,
        2096
      ],
      "loc": {
        "start": {
          "line": 3,
          "column": 0
        },
        "end": {
          "line": 46,
          "column": 3
        }
      }
    },
    {
      "type": "Block",
      "value": "*\n * We need this JSDoc comment for affecting ESDoc.\n * @ignore\n * @extends {Ignored}\n ",
      "range": [
        2596,
        2687
      ],
      "loc": {
        "start": {
          "line": 60,
          "column": 0
        },
        "end": {
          "line": 64,
          "column": 3
        }
      }
    },
    {
      "type": "Line",
      "value": "# sourceMappingURL=mergeAll.js.map",
      "range": [
        3917,
        3953
      ],
      "loc": {
        "start": {
          "line": 102,
          "column": 0
        },
        "end": {
          "line": 102,
          "column": 36
        }
      }
    }
  ]
}