{
  "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 * Emits a value from the source Observable only after a particular time span\n * determined by another Observable has passed without another source emission.\n *\n * <span class=\"informal\">It's like {@link debounceTime}, but the time span of\n * emission silence is determined by a second Observable.</span>\n *\n * <img src=\"./img/debounce.png\" width=\"100%\">\n *\n * `debounce` delays values emitted by the source Observable, but drops previous\n * pending delayed emissions if a new value arrives on the source Observable.\n * This operator keeps track of the most recent value from the source\n * Observable, and spawns a duration Observable by calling the\n * `durationSelector` function. The value is emitted only when the duration\n * Observable emits a value or completes, and if no other value was emitted on\n * the source Observable since the duration Observable was spawned. If a new\n * value appears before the duration Observable emits, the previous value will\n * be dropped and will not be emitted on the output Observable.\n *\n * Like {@link debounceTime}, this is a rate-limiting operator, and also a\n * delay-like operator since output emissions do not necessarily occur at the\n * same time as they did on the source Observable.\n *\n * @example <caption>Emit the most recent click after a burst of clicks</caption>\n * var clicks = Rx.Observable.fromEvent(document, 'click');\n * var result = clicks.debounce(() => Rx.Observable.interval(1000));\n * result.subscribe(x => console.log(x));\n *\n * @see {@link audit}\n * @see {@link debounceTime}\n * @see {@link delayWhen}\n * @see {@link throttle}\n *\n * @param {function(value: T): Observable|Promise} durationSelector A function\n * that receives a value from the source Observable, for computing the timeout\n * duration for each source value, returned as an Observable or a Promise.\n * @return {Observable} An Observable that delays the emissions of the source\n * Observable by the specified duration Observable returned by\n * `durationSelector`, and may drop some values if they occur too frequently.\n * @method debounce\n * @owner Observable\n ",
          "range": [
            117,
            2213
          ],
          "loc": {
            "start": {
              "line": 3,
              "column": 0
            },
            "end": {
              "line": 44,
              "column": 3
            }
          }
        }
      ]
    },
    {
      "type": "ExportNamedDeclaration",
      "declaration": {
        "type": "FunctionDeclaration",
        "id": {
          "type": "Identifier",
          "name": "debounce",
          "range": [
            2230,
            2238
          ],
          "loc": {
            "start": {
              "line": 45,
              "column": 16
            },
            "end": {
              "line": 45,
              "column": 24
            }
          }
        },
        "params": [
          {
            "type": "Identifier",
            "name": "durationSelector",
            "range": [
              2239,
              2255
            ],
            "loc": {
              "start": {
                "line": 45,
                "column": 25
              },
              "end": {
                "line": 45,
                "column": 41
              }
            }
          }
        ],
        "body": {
          "type": "BlockStatement",
          "body": [
            {
              "type": "ReturnStatement",
              "argument": {
                "type": "CallExpression",
                "callee": {
                  "type": "MemberExpression",
                  "computed": false,
                  "object": {
                    "type": "ThisExpression",
                    "range": [
                      2270,
                      2274
                    ],
                    "loc": {
                      "start": {
                        "line": 46,
                        "column": 11
                      },
                      "end": {
                        "line": 46,
                        "column": 15
                      }
                    }
                  },
                  "property": {
                    "type": "Identifier",
                    "name": "lift",
                    "range": [
                      2275,
                      2279
                    ],
                    "loc": {
                      "start": {
                        "line": 46,
                        "column": 16
                      },
                      "end": {
                        "line": 46,
                        "column": 20
                      }
                    }
                  },
                  "range": [
                    2270,
                    2279
                  ],
                  "loc": {
                    "start": {
                      "line": 46,
                      "column": 11
                    },
                    "end": {
                      "line": 46,
                      "column": 20
                    }
                  }
                },
                "arguments": [
                  {
                    "type": "NewExpression",
                    "callee": {
                      "type": "Identifier",
                      "name": "DebounceOperator",
                      "range": [
                        2284,
                        2300
                      ],
                      "loc": {
                        "start": {
                          "line": 46,
                          "column": 25
                        },
                        "end": {
                          "line": 46,
                          "column": 41
                        }
                      }
                    },
                    "arguments": [
                      {
                        "type": "Identifier",
                        "name": "durationSelector",
                        "range": [
                          2301,
                          2317
                        ],
                        "loc": {
                          "start": {
                            "line": 46,
                            "column": 42
                          },
                          "end": {
                            "line": 46,
                            "column": 58
                          }
                        }
                      }
                    ],
                    "range": [
                      2280,
                      2318
                    ],
                    "loc": {
                      "start": {
                        "line": 46,
                        "column": 21
                      },
                      "end": {
                        "line": 46,
                        "column": 59
                      }
                    }
                  }
                ],
                "range": [
                  2270,
                  2319
                ],
                "loc": {
                  "start": {
                    "line": 46,
                    "column": 11
                  },
                  "end": {
                    "line": 46,
                    "column": 60
                  }
                }
              },
              "range": [
                2263,
                2320
              ],
              "loc": {
                "start": {
                  "line": 46,
                  "column": 4
                },
                "end": {
                  "line": 46,
                  "column": 61
                }
              }
            }
          ],
          "range": [
            2257,
            2322
          ],
          "loc": {
            "start": {
              "line": 45,
              "column": 43
            },
            "end": {
              "line": 47,
              "column": 1
            }
          }
        },
        "generator": false,
        "expression": false,
        "range": [
          2221,
          2322
        ],
        "loc": {
          "start": {
            "line": 45,
            "column": 7
          },
          "end": {
            "line": 47,
            "column": 1
          }
        },
        "leadingComments": [
          {
            "type": "Block",
            "value": "*\n * Emits a value from the source Observable only after a particular time span\n * determined by another Observable has passed without another source emission.\n *\n * <span class=\"informal\">It's like {@link debounceTime}, but the time span of\n * emission silence is determined by a second Observable.</span>\n *\n * <img src=\"./img/debounce.png\" width=\"100%\">\n *\n * `debounce` delays values emitted by the source Observable, but drops previous\n * pending delayed emissions if a new value arrives on the source Observable.\n * This operator keeps track of the most recent value from the source\n * Observable, and spawns a duration Observable by calling the\n * `durationSelector` function. The value is emitted only when the duration\n * Observable emits a value or completes, and if no other value was emitted on\n * the source Observable since the duration Observable was spawned. If a new\n * value appears before the duration Observable emits, the previous value will\n * be dropped and will not be emitted on the output Observable.\n *\n * Like {@link debounceTime}, this is a rate-limiting operator, and also a\n * delay-like operator since output emissions do not necessarily occur at the\n * same time as they did on the source Observable.\n *\n * @example <caption>Emit the most recent click after a burst of clicks</caption>\n * var clicks = Rx.Observable.fromEvent(document, 'click');\n * var result = clicks.debounce(() => Rx.Observable.interval(1000));\n * result.subscribe(x => console.log(x));\n *\n * @see {@link audit}\n * @see {@link debounceTime}\n * @see {@link delayWhen}\n * @see {@link throttle}\n *\n * @param {function(value: T): Observable|Promise} durationSelector A function\n * that receives a value from the source Observable, for computing the timeout\n * duration for each source value, returned as an Observable or a Promise.\n * @return {Observable} An Observable that delays the emissions of the source\n * Observable by the specified duration Observable returned by\n * `durationSelector`, and may drop some values if they occur too frequently.\n * @method debounce\n * @owner Observable\n ",
            "range": [
              117,
              2213
            ],
            "loc": {
              "start": {
                "line": 3,
                "column": 0
              },
              "end": {
                "line": 44,
                "column": 3
              }
            }
          }
        ],
        "trailingComments": []
      },
      "specifiers": [],
      "source": null,
      "range": [
        2214,
        2322
      ],
      "loc": {
        "start": {
          "line": 45,
          "column": 0
        },
        "end": {
          "line": 47,
          "column": 1
        }
      },
      "leadingComments": [
        {
          "type": "Block",
          "value": "*\n * Emits a value from the source Observable only after a particular time span\n * determined by another Observable has passed without another source emission.\n *\n * <span class=\"informal\">It's like {@link debounceTime}, but the time span of\n * emission silence is determined by a second Observable.</span>\n *\n * <img src=\"./img/debounce.png\" width=\"100%\">\n *\n * `debounce` delays values emitted by the source Observable, but drops previous\n * pending delayed emissions if a new value arrives on the source Observable.\n * This operator keeps track of the most recent value from the source\n * Observable, and spawns a duration Observable by calling the\n * `durationSelector` function. The value is emitted only when the duration\n * Observable emits a value or completes, and if no other value was emitted on\n * the source Observable since the duration Observable was spawned. If a new\n * value appears before the duration Observable emits, the previous value will\n * be dropped and will not be emitted on the output Observable.\n *\n * Like {@link debounceTime}, this is a rate-limiting operator, and also a\n * delay-like operator since output emissions do not necessarily occur at the\n * same time as they did on the source Observable.\n *\n * @example <caption>Emit the most recent click after a burst of clicks</caption>\n * var clicks = Rx.Observable.fromEvent(document, 'click');\n * var result = clicks.debounce(() => Rx.Observable.interval(1000));\n * result.subscribe(x => console.log(x));\n *\n * @see {@link audit}\n * @see {@link debounceTime}\n * @see {@link delayWhen}\n * @see {@link throttle}\n *\n * @param {function(value: T): Observable|Promise} durationSelector A function\n * that receives a value from the source Observable, for computing the timeout\n * duration for each source value, returned as an Observable or a Promise.\n * @return {Observable} An Observable that delays the emissions of the source\n * Observable by the specified duration Observable returned by\n * `durationSelector`, and may drop some values if they occur too frequently.\n * @method debounce\n * @owner Observable\n ",
          "range": [
            117,
            2213
          ],
          "loc": {
            "start": {
              "line": 3,
              "column": 0
            },
            "end": {
              "line": 44,
              "column": 3
            }
          }
        }
      ]
    },
    {
      "type": "VariableDeclaration",
      "declarations": [
        {
          "type": "VariableDeclarator",
          "id": {
            "type": "Identifier",
            "name": "DebounceOperator",
            "range": [
              2327,
              2343
            ],
            "loc": {
              "start": {
                "line": 48,
                "column": 4
              },
              "end": {
                "line": 48,
                "column": 20
              }
            }
          },
          "init": {
            "type": "CallExpression",
            "callee": {
              "type": "FunctionExpression",
              "id": null,
              "params": [],
              "body": {
                "type": "BlockStatement",
                "body": [
                  {
                    "type": "FunctionDeclaration",
                    "id": {
                      "type": "Identifier",
                      "name": "DebounceOperator",
                      "range": [
                        2374,
                        2390
                      ],
                      "loc": {
                        "start": {
                          "line": 49,
                          "column": 13
                        },
                        "end": {
                          "line": 49,
                          "column": 29
                        }
                      }
                    },
                    "params": [
                      {
                        "type": "Identifier",
                        "name": "durationSelector",
                        "range": [
                          2391,
                          2407
                        ],
                        "loc": {
                          "start": {
                            "line": 49,
                            "column": 30
                          },
                          "end": {
                            "line": 49,
                            "column": 46
                          }
                        }
                      }
                    ],
                    "body": {
                      "type": "BlockStatement",
                      "body": [
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "AssignmentExpression",
                            "operator": "=",
                            "left": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  2419,
                                  2423
                                ],
                                "loc": {
                                  "start": {
                                    "line": 50,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 50,
                                    "column": 12
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "durationSelector",
                                "range": [
                                  2424,
                                  2440
                                ],
                                "loc": {
                                  "start": {
                                    "line": 50,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 50,
                                    "column": 29
                                  }
                                }
                              },
                              "range": [
                                2419,
                                2440
                              ],
                              "loc": {
                                "start": {
                                  "line": 50,
                                  "column": 8
                                },
                                "end": {
                                  "line": 50,
                                  "column": 29
                                }
                              }
                            },
                            "right": {
                              "type": "Identifier",
                              "name": "durationSelector",
                              "range": [
                                2443,
                                2459
                              ],
                              "loc": {
                                "start": {
                                  "line": 50,
                                  "column": 32
                                },
                                "end": {
                                  "line": 50,
                                  "column": 48
                                }
                              }
                            },
                            "range": [
                              2419,
                              2459
                            ],
                            "loc": {
                              "start": {
                                "line": 50,
                                "column": 8
                              },
                              "end": {
                                "line": 50,
                                "column": 48
                              }
                            }
                          },
                          "range": [
                            2419,
                            2460
                          ],
                          "loc": {
                            "start": {
                              "line": 50,
                              "column": 8
                            },
                            "end": {
                              "line": 50,
                              "column": 49
                            }
                          }
                        }
                      ],
                      "range": [
                        2409,
                        2466
                      ],
                      "loc": {
                        "start": {
                          "line": 49,
                          "column": 48
                        },
                        "end": {
                          "line": 51,
                          "column": 5
                        }
                      }
                    },
                    "generator": false,
                    "expression": false,
                    "range": [
                      2365,
                      2466
                    ],
                    "loc": {
                      "start": {
                        "line": 49,
                        "column": 4
                      },
                      "end": {
                        "line": 51,
                        "column": 5
                      }
                    }
                  },
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "AssignmentExpression",
                      "operator": "=",
                      "left": {
                        "type": "MemberExpression",
                        "computed": false,
                        "object": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "Identifier",
                            "name": "DebounceOperator",
                            "range": [
                              2471,
                              2487
                            ],
                            "loc": {
                              "start": {
                                "line": 52,
                                "column": 4
                              },
                              "end": {
                                "line": 52,
                                "column": 20
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "prototype",
                            "range": [
                              2488,
                              2497
                            ],
                            "loc": {
                              "start": {
                                "line": 52,
                                "column": 21
                              },
                              "end": {
                                "line": 52,
                                "column": 30
                              }
                            }
                          },
                          "range": [
                            2471,
                            2497
                          ],
                          "loc": {
                            "start": {
                              "line": 52,
                              "column": 4
                            },
                            "end": {
                              "line": 52,
                              "column": 30
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "call",
                          "range": [
                            2498,
                            2502
                          ],
                          "loc": {
                            "start": {
                              "line": 52,
                              "column": 31
                            },
                            "end": {
                              "line": 52,
                              "column": 35
                            }
                          }
                        },
                        "range": [
                          2471,
                          2502
                        ],
                        "loc": {
                          "start": {
                            "line": 52,
                            "column": 4
                          },
                          "end": {
                            "line": 52,
                            "column": 35
                          }
                        }
                      },
                      "right": {
                        "type": "FunctionExpression",
                        "id": null,
                        "params": [
                          {
                            "type": "Identifier",
                            "name": "subscriber",
                            "range": [
                              2515,
                              2525
                            ],
                            "loc": {
                              "start": {
                                "line": 52,
                                "column": 48
                              },
                              "end": {
                                "line": 52,
                                "column": 58
                              }
                            }
                          },
                          {
                            "type": "Identifier",
                            "name": "source",
                            "range": [
                              2527,
                              2533
                            ],
                            "loc": {
                              "start": {
                                "line": 52,
                                "column": 60
                              },
                              "end": {
                                "line": 52,
                                "column": 66
                              }
                            }
                          }
                        ],
                        "body": {
                          "type": "BlockStatement",
                          "body": [
                            {
                              "type": "ReturnStatement",
                              "argument": {
                                "type": "CallExpression",
                                "callee": {
                                  "type": "MemberExpression",
                                  "computed": false,
                                  "object": {
                                    "type": "Identifier",
                                    "name": "source",
                                    "range": [
                                      2552,
                                      2558
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 53,
                                        "column": 15
                                      },
                                      "end": {
                                        "line": 53,
                                        "column": 21
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "_subscribe",
                                    "range": [
                                      2559,
                                      2569
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 53,
                                        "column": 22
                                      },
                                      "end": {
                                        "line": 53,
                                        "column": 32
                                      }
                                    }
                                  },
                                  "range": [
                                    2552,
                                    2569
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 53,
                                      "column": 15
                                    },
                                    "end": {
                                      "line": 53,
                                      "column": 32
                                    }
                                  }
                                },
                                "arguments": [
                                  {
                                    "type": "NewExpression",
                                    "callee": {
                                      "type": "Identifier",
                                      "name": "DebounceSubscriber",
                                      "range": [
                                        2574,
                                        2592
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 53,
                                          "column": 37
                                        },
                                        "end": {
                                          "line": 53,
                                          "column": 55
                                        }
                                      }
                                    },
                                    "arguments": [
                                      {
                                        "type": "Identifier",
                                        "name": "subscriber",
                                        "range": [
                                          2593,
                                          2603
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 53,
                                            "column": 56
                                          },
                                          "end": {
                                            "line": 53,
                                            "column": 66
                                          }
                                        }
                                      },
                                      {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "ThisExpression",
                                          "range": [
                                            2605,
                                            2609
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 53,
                                              "column": 68
                                            },
                                            "end": {
                                              "line": 53,
                                              "column": 72
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "durationSelector",
                                          "range": [
                                            2610,
                                            2626
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 53,
                                              "column": 73
                                            },
                                            "end": {
                                              "line": 53,
                                              "column": 89
                                            }
                                          }
                                        },
                                        "range": [
                                          2605,
                                          2626
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 53,
                                            "column": 68
                                          },
                                          "end": {
                                            "line": 53,
                                            "column": 89
                                          }
                                        }
                                      }
                                    ],
                                    "range": [
                                      2570,
                                      2627
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 53,
                                        "column": 33
                                      },
                                      "end": {
                                        "line": 53,
                                        "column": 90
                                      }
                                    }
                                  }
                                ],
                                "range": [
                                  2552,
                                  2628
                                ],
                                "loc": {
                                  "start": {
                                    "line": 53,
                                    "column": 15
                                  },
                                  "end": {
                                    "line": 53,
                                    "column": 91
                                  }
                                }
                              },
                              "range": [
                                2545,
                                2629
                              ],
                              "loc": {
                                "start": {
                                  "line": 53,
                                  "column": 8
                                },
                                "end": {
                                  "line": 53,
                                  "column": 92
                                }
                              }
                            }
                          ],
                          "range": [
                            2535,
                            2635
                          ],
                          "loc": {
                            "start": {
                              "line": 52,
                              "column": 68
                            },
                            "end": {
                              "line": 54,
                              "column": 5
                            }
                          }
                        },
                        "generator": false,
                        "expression": false,
                        "range": [
                          2505,
                          2635
                        ],
                        "loc": {
                          "start": {
                            "line": 52,
                            "column": 38
                          },
                          "end": {
                            "line": 54,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        2471,
                        2635
                      ],
                      "loc": {
                        "start": {
                          "line": 52,
                          "column": 4
                        },
                        "end": {
                          "line": 54,
                          "column": 5
                        }
                      }
                    },
                    "range": [
                      2471,
                      2636
                    ],
                    "loc": {
                      "start": {
                        "line": 52,
                        "column": 4
                      },
                      "end": {
                        "line": 54,
                        "column": 6
                      }
                    }
                  },
                  {
                    "type": "ReturnStatement",
                    "argument": {
                      "type": "Identifier",
                      "name": "DebounceOperator",
                      "range": [
                        2648,
                        2664
                      ],
                      "loc": {
                        "start": {
                          "line": 55,
                          "column": 11
                        },
                        "end": {
                          "line": 55,
                          "column": 27
                        }
                      }
                    },
                    "range": [
                      2641,
                      2665
                    ],
                    "loc": {
                      "start": {
                        "line": 55,
                        "column": 4
                      },
                      "end": {
                        "line": 55,
                        "column": 28
                      }
                    }
                  }
                ],
                "range": [
                  2359,
                  2667
                ],
                "loc": {
                  "start": {
                    "line": 48,
                    "column": 36
                  },
                  "end": {
                    "line": 56,
                    "column": 1
                  }
                }
              },
              "generator": false,
              "expression": false,
              "range": [
                2347,
                2667
              ],
              "loc": {
                "start": {
                  "line": 48,
                  "column": 24
                },
                "end": {
                  "line": 56,
                  "column": 1
                }
              }
            },
            "arguments": [],
            "range": [
              2347,
              2669
            ],
            "loc": {
              "start": {
                "line": 48,
                "column": 24
              },
              "end": {
                "line": 56,
                "column": 3
              }
            }
          },
          "range": [
            2327,
            2670
          ],
          "loc": {
            "start": {
              "line": 48,
              "column": 4
            },
            "end": {
              "line": 56,
              "column": 4
            }
          }
        }
      ],
      "kind": "var",
      "range": [
        2323,
        2671
      ],
      "loc": {
        "start": {
          "line": 48,
          "column": 0
        },
        "end": {
          "line": 56,
          "column": 5
        }
      },
      "trailingComments": [
        {
          "type": "Block",
          "value": "*\n * We need this JSDoc comment for affecting ESDoc.\n * @ignore\n * @extends {Ignored}\n ",
          "range": [
            2672,
            2763
          ],
          "loc": {
            "start": {
              "line": 57,
              "column": 0
            },
            "end": {
              "line": 61,
              "column": 3
            }
          }
        }
      ]
    },
    {
      "type": "VariableDeclaration",
      "declarations": [
        {
          "type": "VariableDeclarator",
          "id": {
            "type": "Identifier",
            "name": "DebounceSubscriber",
            "range": [
              2768,
              2786
            ],
            "loc": {
              "start": {
                "line": 62,
                "column": 4
              },
              "end": {
                "line": 62,
                "column": 22
              }
            }
          },
          "init": {
            "type": "CallExpression",
            "callee": {
              "type": "FunctionExpression",
              "id": null,
              "params": [
                {
                  "type": "Identifier",
                  "name": "_super",
                  "range": [
                    2800,
                    2806
                  ],
                  "loc": {
                    "start": {
                      "line": 62,
                      "column": 36
                    },
                    "end": {
                      "line": 62,
                      "column": 42
                    }
                  }
                }
              ],
              "body": {
                "type": "BlockStatement",
                "body": [
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "CallExpression",
                      "callee": {
                        "type": "Identifier",
                        "name": "__extends",
                        "range": [
                          2814,
                          2823
                        ],
                        "loc": {
                          "start": {
                            "line": 63,
                            "column": 4
                          },
                          "end": {
                            "line": 63,
                            "column": 13
                          }
                        }
                      },
                      "arguments": [
                        {
                          "type": "Identifier",
                          "name": "DebounceSubscriber",
                          "range": [
                            2824,
                            2842
                          ],
                          "loc": {
                            "start": {
                              "line": 63,
                              "column": 14
                            },
                            "end": {
                              "line": 63,
                              "column": 32
                            }
                          }
                        },
                        {
                          "type": "Identifier",
                          "name": "_super",
                          "range": [
                            2844,
                            2850
                          ],
                          "loc": {
                            "start": {
                              "line": 63,
                              "column": 34
                            },
                            "end": {
                              "line": 63,
                              "column": 40
                            }
                          }
                        }
                      ],
                      "range": [
                        2814,
                        2851
                      ],
                      "loc": {
                        "start": {
                          "line": 63,
                          "column": 4
                        },
                        "end": {
                          "line": 63,
                          "column": 41
                        }
                      }
                    },
                    "range": [
                      2814,
                      2852
                    ],
                    "loc": {
                      "start": {
                        "line": 63,
                        "column": 4
                      },
                      "end": {
                        "line": 63,
                        "column": 42
                      }
                    }
                  },
                  {
                    "type": "FunctionDeclaration",
                    "id": {
                      "type": "Identifier",
                      "name": "DebounceSubscriber",
                      "range": [
                        2866,
                        2884
                      ],
                      "loc": {
                        "start": {
                          "line": 64,
                          "column": 13
                        },
                        "end": {
                          "line": 64,
                          "column": 31
                        }
                      }
                    },
                    "params": [
                      {
                        "type": "Identifier",
                        "name": "destination",
                        "range": [
                          2885,
                          2896
                        ],
                        "loc": {
                          "start": {
                            "line": 64,
                            "column": 32
                          },
                          "end": {
                            "line": 64,
                            "column": 43
                          }
                        }
                      },
                      {
                        "type": "Identifier",
                        "name": "durationSelector",
                        "range": [
                          2898,
                          2914
                        ],
                        "loc": {
                          "start": {
                            "line": 64,
                            "column": 45
                          },
                          "end": {
                            "line": 64,
                            "column": 61
                          }
                        }
                      }
                    ],
                    "body": {
                      "type": "BlockStatement",
                      "body": [
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "CallExpression",
                            "callee": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "Identifier",
                                "name": "_super",
                                "range": [
                                  2926,
                                  2932
                                ],
                                "loc": {
                                  "start": {
                                    "line": 65,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 65,
                                    "column": 14
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "call",
                                "range": [
                                  2933,
                                  2937
                                ],
                                "loc": {
                                  "start": {
                                    "line": 65,
                                    "column": 15
                                  },
                                  "end": {
                                    "line": 65,
                                    "column": 19
                                  }
                                }
                              },
                              "range": [
                                2926,
                                2937
                              ],
                              "loc": {
                                "start": {
                                  "line": 65,
                                  "column": 8
                                },
                                "end": {
                                  "line": 65,
                                  "column": 19
                                }
                              }
                            },
                            "arguments": [
                              {
                                "type": "ThisExpression",
                                "range": [
                                  2938,
                                  2942
                                ],
                                "loc": {
                                  "start": {
                                    "line": 65,
                                    "column": 20
                                  },
                                  "end": {
                                    "line": 65,
                                    "column": 24
                                  }
                                }
                              },
                              {
                                "type": "Identifier",
                                "name": "destination",
                                "range": [
                                  2944,
                                  2955
                                ],
                                "loc": {
                                  "start": {
                                    "line": 65,
                                    "column": 26
                                  },
                                  "end": {
                                    "line": 65,
                                    "column": 37
                                  }
                                }
                              }
                            ],
                            "range": [
                              2926,
                              2956
                            ],
                            "loc": {
                              "start": {
                                "line": 65,
                                "column": 8
                              },
                              "end": {
                                "line": 65,
                                "column": 38
                              }
                            }
                          },
                          "range": [
                            2926,
                            2957
                          ],
                          "loc": {
                            "start": {
                              "line": 65,
                              "column": 8
                            },
                            "end": {
                              "line": 65,
                              "column": 39
                            }
                          }
                        },
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "AssignmentExpression",
                            "operator": "=",
                            "left": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  2966,
                                  2970
                                ],
                                "loc": {
                                  "start": {
                                    "line": 66,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 66,
                                    "column": 12
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "durationSelector",
                                "range": [
                                  2971,
                                  2987
                                ],
                                "loc": {
                                  "start": {
                                    "line": 66,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 66,
                                    "column": 29
                                  }
                                }
                              },
                              "range": [
                                2966,
                                2987
                              ],
                              "loc": {
                                "start": {
                                  "line": 66,
                                  "column": 8
                                },
                                "end": {
                                  "line": 66,
                                  "column": 29
                                }
                              }
                            },
                            "right": {
                              "type": "Identifier",
                              "name": "durationSelector",
                              "range": [
                                2990,
                                3006
                              ],
                              "loc": {
                                "start": {
                                  "line": 66,
                                  "column": 32
                                },
                                "end": {
                                  "line": 66,
                                  "column": 48
                                }
                              }
                            },
                            "range": [
                              2966,
                              3006
                            ],
                            "loc": {
                              "start": {
                                "line": 66,
                                "column": 8
                              },
                              "end": {
                                "line": 66,
                                "column": 48
                              }
                            }
                          },
                          "range": [
                            2966,
                            3007
                          ],
                          "loc": {
                            "start": {
                              "line": 66,
                              "column": 8
                            },
                            "end": {
                              "line": 66,
                              "column": 49
                            }
                          }
                        },
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "AssignmentExpression",
                            "operator": "=",
                            "left": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  3016,
                                  3020
                                ],
                                "loc": {
                                  "start": {
                                    "line": 67,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 67,
                                    "column": 12
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "hasValue",
                                "range": [
                                  3021,
                                  3029
                                ],
                                "loc": {
                                  "start": {
                                    "line": 67,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 67,
                                    "column": 21
                                  }
                                }
                              },
                              "range": [
                                3016,
                                3029
                              ],
                              "loc": {
                                "start": {
                                  "line": 67,
                                  "column": 8
                                },
                                "end": {
                                  "line": 67,
                                  "column": 21
                                }
                              }
                            },
                            "right": {
                              "type": "Literal",
                              "value": false,
                              "raw": "false",
                              "range": [
                                3032,
                                3037
                              ],
                              "loc": {
                                "start": {
                                  "line": 67,
                                  "column": 24
                                },
                                "end": {
                                  "line": 67,
                                  "column": 29
                                }
                              }
                            },
                            "range": [
                              3016,
                              3037
                            ],
                            "loc": {
                              "start": {
                                "line": 67,
                                "column": 8
                              },
                              "end": {
                                "line": 67,
                                "column": 29
                              }
                            }
                          },
                          "range": [
                            3016,
                            3038
                          ],
                          "loc": {
                            "start": {
                              "line": 67,
                              "column": 8
                            },
                            "end": {
                              "line": 67,
                              "column": 30
                            }
                          }
                        },
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "AssignmentExpression",
                            "operator": "=",
                            "left": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  3047,
                                  3051
                                ],
                                "loc": {
                                  "start": {
                                    "line": 68,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 68,
                                    "column": 12
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "durationSubscription",
                                "range": [
                                  3052,
                                  3072
                                ],
                                "loc": {
                                  "start": {
                                    "line": 68,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 68,
                                    "column": 33
                                  }
                                }
                              },
                              "range": [
                                3047,
                                3072
                              ],
                              "loc": {
                                "start": {
                                  "line": 68,
                                  "column": 8
                                },
                                "end": {
                                  "line": 68,
                                  "column": 33
                                }
                              }
                            },
                            "right": {
                              "type": "Literal",
                              "value": null,
                              "raw": "null",
                              "range": [
                                3075,
                                3079
                              ],
                              "loc": {
                                "start": {
                                  "line": 68,
                                  "column": 36
                                },
                                "end": {
                                  "line": 68,
                                  "column": 40
                                }
                              }
                            },
                            "range": [
                              3047,
                              3079
                            ],
                            "loc": {
                              "start": {
                                "line": 68,
                                "column": 8
                              },
                              "end": {
                                "line": 68,
                                "column": 40
                              }
                            }
                          },
                          "range": [
                            3047,
                            3080
                          ],
                          "loc": {
                            "start": {
                              "line": 68,
                              "column": 8
                            },
                            "end": {
                              "line": 68,
                              "column": 41
                            }
                          }
                        }
                      ],
                      "range": [
                        2916,
                        3086
                      ],
                      "loc": {
                        "start": {
                          "line": 64,
                          "column": 63
                        },
                        "end": {
                          "line": 69,
                          "column": 5
                        }
                      }
                    },
                    "generator": false,
                    "expression": false,
                    "range": [
                      2857,
                      3086
                    ],
                    "loc": {
                      "start": {
                        "line": 64,
                        "column": 4
                      },
                      "end": {
                        "line": 69,
                        "column": 5
                      }
                    }
                  },
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "AssignmentExpression",
                      "operator": "=",
                      "left": {
                        "type": "MemberExpression",
                        "computed": false,
                        "object": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "Identifier",
                            "name": "DebounceSubscriber",
                            "range": [
                              3091,
                              3109
                            ],
                            "loc": {
                              "start": {
                                "line": 70,
                                "column": 4
                              },
                              "end": {
                                "line": 70,
                                "column": 22
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "prototype",
                            "range": [
                              3110,
                              3119
                            ],
                            "loc": {
                              "start": {
                                "line": 70,
                                "column": 23
                              },
                              "end": {
                                "line": 70,
                                "column": 32
                              }
                            }
                          },
                          "range": [
                            3091,
                            3119
                          ],
                          "loc": {
                            "start": {
                              "line": 70,
                              "column": 4
                            },
                            "end": {
                              "line": 70,
                              "column": 32
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "_next",
                          "range": [
                            3120,
                            3125
                          ],
                          "loc": {
                            "start": {
                              "line": 70,
                              "column": 33
                            },
                            "end": {
                              "line": 70,
                              "column": 38
                            }
                          }
                        },
                        "range": [
                          3091,
                          3125
                        ],
                        "loc": {
                          "start": {
                            "line": 70,
                            "column": 4
                          },
                          "end": {
                            "line": 70,
                            "column": 38
                          }
                        }
                      },
                      "right": {
                        "type": "FunctionExpression",
                        "id": null,
                        "params": [
                          {
                            "type": "Identifier",
                            "name": "value",
                            "range": [
                              3138,
                              3143
                            ],
                            "loc": {
                              "start": {
                                "line": 70,
                                "column": 51
                              },
                              "end": {
                                "line": 70,
                                "column": 56
                              }
                            }
                          }
                        ],
                        "body": {
                          "type": "BlockStatement",
                          "body": [
                            {
                              "type": "TryStatement",
                              "block": {
                                "type": "BlockStatement",
                                "body": [
                                  {
                                    "type": "VariableDeclaration",
                                    "declarations": [
                                      {
                                        "type": "VariableDeclarator",
                                        "id": {
                                          "type": "Identifier",
                                          "name": "result",
                                          "range": [
                                            3177,
                                            3183
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 72,
                                              "column": 16
                                            },
                                            "end": {
                                              "line": 72,
                                              "column": 22
                                            }
                                          }
                                        },
                                        "init": {
                                          "type": "CallExpression",
                                          "callee": {
                                            "type": "MemberExpression",
                                            "computed": false,
                                            "object": {
                                              "type": "MemberExpression",
                                              "computed": false,
                                              "object": {
                                                "type": "ThisExpression",
                                                "range": [
                                                  3186,
                                                  3190
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 72,
                                                    "column": 25
                                                  },
                                                  "end": {
                                                    "line": 72,
                                                    "column": 29
                                                  }
                                                }
                                              },
                                              "property": {
                                                "type": "Identifier",
                                                "name": "durationSelector",
                                                "range": [
                                                  3191,
                                                  3207
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 72,
                                                    "column": 30
                                                  },
                                                  "end": {
                                                    "line": 72,
                                                    "column": 46
                                                  }
                                                }
                                              },
                                              "range": [
                                                3186,
                                                3207
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 72,
                                                  "column": 25
                                                },
                                                "end": {
                                                  "line": 72,
                                                  "column": 46
                                                }
                                              }
                                            },
                                            "property": {
                                              "type": "Identifier",
                                              "name": "call",
                                              "range": [
                                                3208,
                                                3212
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 72,
                                                  "column": 47
                                                },
                                                "end": {
                                                  "line": 72,
                                                  "column": 51
                                                }
                                              }
                                            },
                                            "range": [
                                              3186,
                                              3212
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 72,
                                                "column": 25
                                              },
                                              "end": {
                                                "line": 72,
                                                "column": 51
                                              }
                                            }
                                          },
                                          "arguments": [
                                            {
                                              "type": "ThisExpression",
                                              "range": [
                                                3213,
                                                3217
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 72,
                                                  "column": 52
                                                },
                                                "end": {
                                                  "line": 72,
                                                  "column": 56
                                                }
                                              }
                                            },
                                            {
                                              "type": "Identifier",
                                              "name": "value",
                                              "range": [
                                                3219,
                                                3224
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 72,
                                                  "column": 58
                                                },
                                                "end": {
                                                  "line": 72,
                                                  "column": 63
                                                }
                                              }
                                            }
                                          ],
                                          "range": [
                                            3186,
                                            3225
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 72,
                                              "column": 25
                                            },
                                            "end": {
                                              "line": 72,
                                              "column": 64
                                            }
                                          }
                                        },
                                        "range": [
                                          3177,
                                          3225
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 72,
                                            "column": 16
                                          },
                                          "end": {
                                            "line": 72,
                                            "column": 64
                                          }
                                        }
                                      }
                                    ],
                                    "kind": "var",
                                    "range": [
                                      3173,
                                      3226
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 72,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 72,
                                        "column": 65
                                      }
                                    }
                                  },
                                  {
                                    "type": "IfStatement",
                                    "test": {
                                      "type": "Identifier",
                                      "name": "result",
                                      "range": [
                                        3243,
                                        3249
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 73,
                                          "column": 16
                                        },
                                        "end": {
                                          "line": 73,
                                          "column": 22
                                        }
                                      }
                                    },
                                    "consequent": {
                                      "type": "BlockStatement",
                                      "body": [
                                        {
                                          "type": "ExpressionStatement",
                                          "expression": {
                                            "type": "CallExpression",
                                            "callee": {
                                              "type": "MemberExpression",
                                              "computed": false,
                                              "object": {
                                                "type": "ThisExpression",
                                                "range": [
                                                  3269,
                                                  3273
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 74,
                                                    "column": 16
                                                  },
                                                  "end": {
                                                    "line": 74,
                                                    "column": 20
                                                  }
                                                }
                                              },
                                              "property": {
                                                "type": "Identifier",
                                                "name": "_tryNext",
                                                "range": [
                                                  3274,
                                                  3282
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 74,
                                                    "column": 21
                                                  },
                                                  "end": {
                                                    "line": 74,
                                                    "column": 29
                                                  }
                                                }
                                              },
                                              "range": [
                                                3269,
                                                3282
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 74,
                                                  "column": 16
                                                },
                                                "end": {
                                                  "line": 74,
                                                  "column": 29
                                                }
                                              }
                                            },
                                            "arguments": [
                                              {
                                                "type": "Identifier",
                                                "name": "value",
                                                "range": [
                                                  3283,
                                                  3288
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 74,
                                                    "column": 30
                                                  },
                                                  "end": {
                                                    "line": 74,
                                                    "column": 35
                                                  }
                                                }
                                              },
                                              {
                                                "type": "Identifier",
                                                "name": "result",
                                                "range": [
                                                  3290,
                                                  3296
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 74,
                                                    "column": 37
                                                  },
                                                  "end": {
                                                    "line": 74,
                                                    "column": 43
                                                  }
                                                }
                                              }
                                            ],
                                            "range": [
                                              3269,
                                              3297
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 74,
                                                "column": 16
                                              },
                                              "end": {
                                                "line": 74,
                                                "column": 44
                                              }
                                            }
                                          },
                                          "range": [
                                            3269,
                                            3298
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 74,
                                              "column": 16
                                            },
                                            "end": {
                                              "line": 74,
                                              "column": 45
                                            }
                                          }
                                        }
                                      ],
                                      "range": [
                                        3251,
                                        3312
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 73,
                                          "column": 24
                                        },
                                        "end": {
                                          "line": 75,
                                          "column": 13
                                        }
                                      }
                                    },
                                    "alternate": null,
                                    "range": [
                                      3239,
                                      3312
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 73,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 75,
                                        "column": 13
                                      }
                                    }
                                  }
                                ],
                                "range": [
                                  3159,
                                  3322
                                ],
                                "loc": {
                                  "start": {
                                    "line": 71,
                                    "column": 12
                                  },
                                  "end": {
                                    "line": 76,
                                    "column": 9
                                  }
                                }
                              },
                              "handler": {
                                "type": "CatchClause",
                                "param": {
                                  "type": "Identifier",
                                  "name": "err",
                                  "range": [
                                    3338,
                                    3341
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 77,
                                      "column": 15
                                    },
                                    "end": {
                                      "line": 77,
                                      "column": 18
                                    }
                                  }
                                },
                                "body": {
                                  "type": "BlockStatement",
                                  "body": [
                                    {
                                      "type": "ExpressionStatement",
                                      "expression": {
                                        "type": "CallExpression",
                                        "callee": {
                                          "type": "MemberExpression",
                                          "computed": false,
                                          "object": {
                                            "type": "MemberExpression",
                                            "computed": false,
                                            "object": {
                                              "type": "ThisExpression",
                                              "range": [
                                                3357,
                                                3361
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 78,
                                                  "column": 12
                                                },
                                                "end": {
                                                  "line": 78,
                                                  "column": 16
                                                }
                                              }
                                            },
                                            "property": {
                                              "type": "Identifier",
                                              "name": "destination",
                                              "range": [
                                                3362,
                                                3373
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 78,
                                                  "column": 17
                                                },
                                                "end": {
                                                  "line": 78,
                                                  "column": 28
                                                }
                                              }
                                            },
                                            "range": [
                                              3357,
                                              3373
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 78,
                                                "column": 12
                                              },
                                              "end": {
                                                "line": 78,
                                                "column": 28
                                              }
                                            }
                                          },
                                          "property": {
                                            "type": "Identifier",
                                            "name": "error",
                                            "range": [
                                              3374,
                                              3379
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 78,
                                                "column": 29
                                              },
                                              "end": {
                                                "line": 78,
                                                "column": 34
                                              }
                                            }
                                          },
                                          "range": [
                                            3357,
                                            3379
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 78,
                                              "column": 12
                                            },
                                            "end": {
                                              "line": 78,
                                              "column": 34
                                            }
                                          }
                                        },
                                        "arguments": [
                                          {
                                            "type": "Identifier",
                                            "name": "err",
                                            "range": [
                                              3380,
                                              3383
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 78,
                                                "column": 35
                                              },
                                              "end": {
                                                "line": 78,
                                                "column": 38
                                              }
                                            }
                                          }
                                        ],
                                        "range": [
                                          3357,
                                          3384
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 78,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 78,
                                            "column": 39
                                          }
                                        }
                                      },
                                      "range": [
                                        3357,
                                        3385
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 78,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 78,
                                          "column": 40
                                        }
                                      }
                                    }
                                  ],
                                  "range": [
                                    3343,
                                    3395
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 77,
                                      "column": 20
                                    },
                                    "end": {
                                      "line": 79,
                                      "column": 9
                                    }
                                  }
                                },
                                "range": [
                                  3331,
                                  3395
                                ],
                                "loc": {
                                  "start": {
                                    "line": 77,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 79,
                                    "column": 9
                                  }
                                }
                              },
                              "finalizer": null,
                              "range": [
                                3155,
                                3395
                              ],
                              "loc": {
                                "start": {
                                  "line": 71,
                                  "column": 8
                                },
                                "end": {
                                  "line": 79,
                                  "column": 9
                                }
                              }
                            }
                          ],
                          "range": [
                            3145,
                            3401
                          ],
                          "loc": {
                            "start": {
                              "line": 70,
                              "column": 58
                            },
                            "end": {
                              "line": 80,
                              "column": 5
                            }
                          }
                        },
                        "generator": false,
                        "expression": false,
                        "range": [
                          3128,
                          3401
                        ],
                        "loc": {
                          "start": {
                            "line": 70,
                            "column": 41
                          },
                          "end": {
                            "line": 80,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        3091,
                        3401
                      ],
                      "loc": {
                        "start": {
                          "line": 70,
                          "column": 4
                        },
                        "end": {
                          "line": 80,
                          "column": 5
                        }
                      }
                    },
                    "range": [
                      3091,
                      3402
                    ],
                    "loc": {
                      "start": {
                        "line": 70,
                        "column": 4
                      },
                      "end": {
                        "line": 80,
                        "column": 6
                      }
                    }
                  },
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "AssignmentExpression",
                      "operator": "=",
                      "left": {
                        "type": "MemberExpression",
                        "computed": false,
                        "object": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "Identifier",
                            "name": "DebounceSubscriber",
                            "range": [
                              3407,
                              3425
                            ],
                            "loc": {
                              "start": {
                                "line": 81,
                                "column": 4
                              },
                              "end": {
                                "line": 81,
                                "column": 22
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "prototype",
                            "range": [
                              3426,
                              3435
                            ],
                            "loc": {
                              "start": {
                                "line": 81,
                                "column": 23
                              },
                              "end": {
                                "line": 81,
                                "column": 32
                              }
                            }
                          },
                          "range": [
                            3407,
                            3435
                          ],
                          "loc": {
                            "start": {
                              "line": 81,
                              "column": 4
                            },
                            "end": {
                              "line": 81,
                              "column": 32
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "_complete",
                          "range": [
                            3436,
                            3445
                          ],
                          "loc": {
                            "start": {
                              "line": 81,
                              "column": 33
                            },
                            "end": {
                              "line": 81,
                              "column": 42
                            }
                          }
                        },
                        "range": [
                          3407,
                          3445
                        ],
                        "loc": {
                          "start": {
                            "line": 81,
                            "column": 4
                          },
                          "end": {
                            "line": 81,
                            "column": 42
                          }
                        }
                      },
                      "right": {
                        "type": "FunctionExpression",
                        "id": null,
                        "params": [],
                        "body": {
                          "type": "BlockStatement",
                          "body": [
                            {
                              "type": "ExpressionStatement",
                              "expression": {
                                "type": "CallExpression",
                                "callee": {
                                  "type": "MemberExpression",
                                  "computed": false,
                                  "object": {
                                    "type": "ThisExpression",
                                    "range": [
                                      3470,
                                      3474
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 82,
                                        "column": 8
                                      },
                                      "end": {
                                        "line": 82,
                                        "column": 12
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "emitValue",
                                    "range": [
                                      3475,
                                      3484
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 82,
                                        "column": 13
                                      },
                                      "end": {
                                        "line": 82,
                                        "column": 22
                                      }
                                    }
                                  },
                                  "range": [
                                    3470,
                                    3484
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 82,
                                      "column": 8
                                    },
                                    "end": {
                                      "line": 82,
                                      "column": 22
                                    }
                                  }
                                },
                                "arguments": [],
                                "range": [
                                  3470,
                                  3486
                                ],
                                "loc": {
                                  "start": {
                                    "line": 82,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 82,
                                    "column": 24
                                  }
                                }
                              },
                              "range": [
                                3470,
                                3487
                              ],
                              "loc": {
                                "start": {
                                  "line": 82,
                                  "column": 8
                                },
                                "end": {
                                  "line": 82,
                                  "column": 25
                                }
                              }
                            },
                            {
                              "type": "ExpressionStatement",
                              "expression": {
                                "type": "CallExpression",
                                "callee": {
                                  "type": "MemberExpression",
                                  "computed": false,
                                  "object": {
                                    "type": "MemberExpression",
                                    "computed": false,
                                    "object": {
                                      "type": "ThisExpression",
                                      "range": [
                                        3496,
                                        3500
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 83,
                                          "column": 8
                                        },
                                        "end": {
                                          "line": 83,
                                          "column": 12
                                        }
                                      }
                                    },
                                    "property": {
                                      "type": "Identifier",
                                      "name": "destination",
                                      "range": [
                                        3501,
                                        3512
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 83,
                                          "column": 13
                                        },
                                        "end": {
                                          "line": 83,
                                          "column": 24
                                        }
                                      }
                                    },
                                    "range": [
                                      3496,
                                      3512
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 83,
                                        "column": 8
                                      },
                                      "end": {
                                        "line": 83,
                                        "column": 24
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "complete",
                                    "range": [
                                      3513,
                                      3521
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 83,
                                        "column": 25
                                      },
                                      "end": {
                                        "line": 83,
                                        "column": 33
                                      }
                                    }
                                  },
                                  "range": [
                                    3496,
                                    3521
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 83,
                                      "column": 8
                                    },
                                    "end": {
                                      "line": 83,
                                      "column": 33
                                    }
                                  }
                                },
                                "arguments": [],
                                "range": [
                                  3496,
                                  3523
                                ],
                                "loc": {
                                  "start": {
                                    "line": 83,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 83,
                                    "column": 35
                                  }
                                }
                              },
                              "range": [
                                3496,
                                3524
                              ],
                              "loc": {
                                "start": {
                                  "line": 83,
                                  "column": 8
                                },
                                "end": {
                                  "line": 83,
                                  "column": 36
                                }
                              }
                            }
                          ],
                          "range": [
                            3460,
                            3530
                          ],
                          "loc": {
                            "start": {
                              "line": 81,
                              "column": 57
                            },
                            "end": {
                              "line": 84,
                              "column": 5
                            }
                          }
                        },
                        "generator": false,
                        "expression": false,
                        "range": [
                          3448,
                          3530
                        ],
                        "loc": {
                          "start": {
                            "line": 81,
                            "column": 45
                          },
                          "end": {
                            "line": 84,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        3407,
                        3530
                      ],
                      "loc": {
                        "start": {
                          "line": 81,
                          "column": 4
                        },
                        "end": {
                          "line": 84,
                          "column": 5
                        }
                      }
                    },
                    "range": [
                      3407,
                      3531
                    ],
                    "loc": {
                      "start": {
                        "line": 81,
                        "column": 4
                      },
                      "end": {
                        "line": 84,
                        "column": 6
                      }
                    }
                  },
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "AssignmentExpression",
                      "operator": "=",
                      "left": {
                        "type": "MemberExpression",
                        "computed": false,
                        "object": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "Identifier",
                            "name": "DebounceSubscriber",
                            "range": [
                              3536,
                              3554
                            ],
                            "loc": {
                              "start": {
                                "line": 85,
                                "column": 4
                              },
                              "end": {
                                "line": 85,
                                "column": 22
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "prototype",
                            "range": [
                              3555,
                              3564
                            ],
                            "loc": {
                              "start": {
                                "line": 85,
                                "column": 23
                              },
                              "end": {
                                "line": 85,
                                "column": 32
                              }
                            }
                          },
                          "range": [
                            3536,
                            3564
                          ],
                          "loc": {
                            "start": {
                              "line": 85,
                              "column": 4
                            },
                            "end": {
                              "line": 85,
                              "column": 32
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "_tryNext",
                          "range": [
                            3565,
                            3573
                          ],
                          "loc": {
                            "start": {
                              "line": 85,
                              "column": 33
                            },
                            "end": {
                              "line": 85,
                              "column": 41
                            }
                          }
                        },
                        "range": [
                          3536,
                          3573
                        ],
                        "loc": {
                          "start": {
                            "line": 85,
                            "column": 4
                          },
                          "end": {
                            "line": 85,
                            "column": 41
                          }
                        }
                      },
                      "right": {
                        "type": "FunctionExpression",
                        "id": null,
                        "params": [
                          {
                            "type": "Identifier",
                            "name": "value",
                            "range": [
                              3586,
                              3591
                            ],
                            "loc": {
                              "start": {
                                "line": 85,
                                "column": 54
                              },
                              "end": {
                                "line": 85,
                                "column": 59
                              }
                            }
                          },
                          {
                            "type": "Identifier",
                            "name": "duration",
                            "range": [
                              3593,
                              3601
                            ],
                            "loc": {
                              "start": {
                                "line": 85,
                                "column": 61
                              },
                              "end": {
                                "line": 85,
                                "column": 69
                              }
                            }
                          }
                        ],
                        "body": {
                          "type": "BlockStatement",
                          "body": [
                            {
                              "type": "VariableDeclaration",
                              "declarations": [
                                {
                                  "type": "VariableDeclarator",
                                  "id": {
                                    "type": "Identifier",
                                    "name": "subscription",
                                    "range": [
                                      3617,
                                      3629
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 86,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 86,
                                        "column": 24
                                      }
                                    }
                                  },
                                  "init": {
                                    "type": "MemberExpression",
                                    "computed": false,
                                    "object": {
                                      "type": "ThisExpression",
                                      "range": [
                                        3632,
                                        3636
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 86,
                                          "column": 27
                                        },
                                        "end": {
                                          "line": 86,
                                          "column": 31
                                        }
                                      }
                                    },
                                    "property": {
                                      "type": "Identifier",
                                      "name": "durationSubscription",
                                      "range": [
                                        3637,
                                        3657
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 86,
                                          "column": 32
                                        },
                                        "end": {
                                          "line": 86,
                                          "column": 52
                                        }
                                      }
                                    },
                                    "range": [
                                      3632,
                                      3657
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 86,
                                        "column": 27
                                      },
                                      "end": {
                                        "line": 86,
                                        "column": 52
                                      }
                                    }
                                  },
                                  "range": [
                                    3617,
                                    3657
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 86,
                                      "column": 12
                                    },
                                    "end": {
                                      "line": 86,
                                      "column": 52
                                    }
                                  }
                                }
                              ],
                              "kind": "var",
                              "range": [
                                3613,
                                3658
                              ],
                              "loc": {
                                "start": {
                                  "line": 86,
                                  "column": 8
                                },
                                "end": {
                                  "line": 86,
                                  "column": 53
                                }
                              }
                            },
                            {
                              "type": "ExpressionStatement",
                              "expression": {
                                "type": "AssignmentExpression",
                                "operator": "=",
                                "left": {
                                  "type": "MemberExpression",
                                  "computed": false,
                                  "object": {
                                    "type": "ThisExpression",
                                    "range": [
                                      3667,
                                      3671
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 87,
                                        "column": 8
                                      },
                                      "end": {
                                        "line": 87,
                                        "column": 12
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "value",
                                    "range": [
                                      3672,
                                      3677
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 87,
                                        "column": 13
                                      },
                                      "end": {
                                        "line": 87,
                                        "column": 18
                                      }
                                    }
                                  },
                                  "range": [
                                    3667,
                                    3677
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 87,
                                      "column": 8
                                    },
                                    "end": {
                                      "line": 87,
                                      "column": 18
                                    }
                                  }
                                },
                                "right": {
                                  "type": "Identifier",
                                  "name": "value",
                                  "range": [
                                    3680,
                                    3685
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 87,
                                      "column": 21
                                    },
                                    "end": {
                                      "line": 87,
                                      "column": 26
                                    }
                                  }
                                },
                                "range": [
                                  3667,
                                  3685
                                ],
                                "loc": {
                                  "start": {
                                    "line": 87,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 87,
                                    "column": 26
                                  }
                                }
                              },
                              "range": [
                                3667,
                                3686
                              ],
                              "loc": {
                                "start": {
                                  "line": 87,
                                  "column": 8
                                },
                                "end": {
                                  "line": 87,
                                  "column": 27
                                }
                              }
                            },
                            {
                              "type": "ExpressionStatement",
                              "expression": {
                                "type": "AssignmentExpression",
                                "operator": "=",
                                "left": {
                                  "type": "MemberExpression",
                                  "computed": false,
                                  "object": {
                                    "type": "ThisExpression",
                                    "range": [
                                      3695,
                                      3699
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 88,
                                        "column": 8
                                      },
                                      "end": {
                                        "line": 88,
                                        "column": 12
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "hasValue",
                                    "range": [
                                      3700,
                                      3708
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 88,
                                        "column": 13
                                      },
                                      "end": {
                                        "line": 88,
                                        "column": 21
                                      }
                                    }
                                  },
                                  "range": [
                                    3695,
                                    3708
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 88,
                                      "column": 8
                                    },
                                    "end": {
                                      "line": 88,
                                      "column": 21
                                    }
                                  }
                                },
                                "right": {
                                  "type": "Literal",
                                  "value": true,
                                  "raw": "true",
                                  "range": [
                                    3711,
                                    3715
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 88,
                                      "column": 24
                                    },
                                    "end": {
                                      "line": 88,
                                      "column": 28
                                    }
                                  }
                                },
                                "range": [
                                  3695,
                                  3715
                                ],
                                "loc": {
                                  "start": {
                                    "line": 88,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 88,
                                    "column": 28
                                  }
                                }
                              },
                              "range": [
                                3695,
                                3716
                              ],
                              "loc": {
                                "start": {
                                  "line": 88,
                                  "column": 8
                                },
                                "end": {
                                  "line": 88,
                                  "column": 29
                                }
                              }
                            },
                            {
                              "type": "IfStatement",
                              "test": {
                                "type": "Identifier",
                                "name": "subscription",
                                "range": [
                                  3729,
                                  3741
                                ],
                                "loc": {
                                  "start": {
                                    "line": 89,
                                    "column": 12
                                  },
                                  "end": {
                                    "line": 89,
                                    "column": 24
                                  }
                                }
                              },
                              "consequent": {
                                "type": "BlockStatement",
                                "body": [
                                  {
                                    "type": "ExpressionStatement",
                                    "expression": {
                                      "type": "CallExpression",
                                      "callee": {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "Identifier",
                                          "name": "subscription",
                                          "range": [
                                            3757,
                                            3769
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 90,
                                              "column": 12
                                            },
                                            "end": {
                                              "line": 90,
                                              "column": 24
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "unsubscribe",
                                          "range": [
                                            3770,
                                            3781
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 90,
                                              "column": 25
                                            },
                                            "end": {
                                              "line": 90,
                                              "column": 36
                                            }
                                          }
                                        },
                                        "range": [
                                          3757,
                                          3781
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 90,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 90,
                                            "column": 36
                                          }
                                        }
                                      },
                                      "arguments": [],
                                      "range": [
                                        3757,
                                        3783
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 90,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 90,
                                          "column": 38
                                        }
                                      }
                                    },
                                    "range": [
                                      3757,
                                      3784
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 90,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 90,
                                        "column": 39
                                      }
                                    }
                                  },
                                  {
                                    "type": "ExpressionStatement",
                                    "expression": {
                                      "type": "CallExpression",
                                      "callee": {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "ThisExpression",
                                          "range": [
                                            3797,
                                            3801
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 91,
                                              "column": 12
                                            },
                                            "end": {
                                              "line": 91,
                                              "column": 16
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "remove",
                                          "range": [
                                            3802,
                                            3808
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 91,
                                              "column": 17
                                            },
                                            "end": {
                                              "line": 91,
                                              "column": 23
                                            }
                                          }
                                        },
                                        "range": [
                                          3797,
                                          3808
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 91,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 91,
                                            "column": 23
                                          }
                                        }
                                      },
                                      "arguments": [
                                        {
                                          "type": "Identifier",
                                          "name": "subscription",
                                          "range": [
                                            3809,
                                            3821
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 91,
                                              "column": 24
                                            },
                                            "end": {
                                              "line": 91,
                                              "column": 36
                                            }
                                          }
                                        }
                                      ],
                                      "range": [
                                        3797,
                                        3822
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 91,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 91,
                                          "column": 37
                                        }
                                      }
                                    },
                                    "range": [
                                      3797,
                                      3823
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 91,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 91,
                                        "column": 38
                                      }
                                    }
                                  }
                                ],
                                "range": [
                                  3743,
                                  3833
                                ],
                                "loc": {
                                  "start": {
                                    "line": 89,
                                    "column": 26
                                  },
                                  "end": {
                                    "line": 92,
                                    "column": 9
                                  }
                                }
                              },
                              "alternate": null,
                              "range": [
                                3725,
                                3833
                              ],
                              "loc": {
                                "start": {
                                  "line": 89,
                                  "column": 8
                                },
                                "end": {
                                  "line": 92,
                                  "column": 9
                                }
                              }
                            },
                            {
                              "type": "ExpressionStatement",
                              "expression": {
                                "type": "AssignmentExpression",
                                "operator": "=",
                                "left": {
                                  "type": "Identifier",
                                  "name": "subscription",
                                  "range": [
                                    3842,
                                    3854
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 93,
                                      "column": 8
                                    },
                                    "end": {
                                      "line": 93,
                                      "column": 20
                                    }
                                  }
                                },
                                "right": {
                                  "type": "CallExpression",
                                  "callee": {
                                    "type": "Identifier",
                                    "name": "subscribeToResult",
                                    "range": [
                                      3857,
                                      3874
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 93,
                                        "column": 23
                                      },
                                      "end": {
                                        "line": 93,
                                        "column": 40
                                      }
                                    }
                                  },
                                  "arguments": [
                                    {
                                      "type": "ThisExpression",
                                      "range": [
                                        3875,
                                        3879
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 93,
                                          "column": 41
                                        },
                                        "end": {
                                          "line": 93,
                                          "column": 45
                                        }
                                      }
                                    },
                                    {
                                      "type": "Identifier",
                                      "name": "duration",
                                      "range": [
                                        3881,
                                        3889
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 93,
                                          "column": 47
                                        },
                                        "end": {
                                          "line": 93,
                                          "column": 55
                                        }
                                      }
                                    }
                                  ],
                                  "range": [
                                    3857,
                                    3890
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 93,
                                      "column": 23
                                    },
                                    "end": {
                                      "line": 93,
                                      "column": 56
                                    }
                                  }
                                },
                                "range": [
                                  3842,
                                  3890
                                ],
                                "loc": {
                                  "start": {
                                    "line": 93,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 93,
                                    "column": 56
                                  }
                                }
                              },
                              "range": [
                                3842,
                                3891
                              ],
                              "loc": {
                                "start": {
                                  "line": 93,
                                  "column": 8
                                },
                                "end": {
                                  "line": 93,
                                  "column": 57
                                }
                              }
                            },
                            {
                              "type": "IfStatement",
                              "test": {
                                "type": "UnaryExpression",
                                "operator": "!",
                                "argument": {
                                  "type": "MemberExpression",
                                  "computed": false,
                                  "object": {
                                    "type": "Identifier",
                                    "name": "subscription",
                                    "range": [
                                      3905,
                                      3917
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 94,
                                        "column": 13
                                      },
                                      "end": {
                                        "line": 94,
                                        "column": 25
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "closed",
                                    "range": [
                                      3918,
                                      3924
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 94,
                                        "column": 26
                                      },
                                      "end": {
                                        "line": 94,
                                        "column": 32
                                      }
                                    }
                                  },
                                  "range": [
                                    3905,
                                    3924
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 94,
                                      "column": 13
                                    },
                                    "end": {
                                      "line": 94,
                                      "column": 32
                                    }
                                  }
                                },
                                "prefix": true,
                                "range": [
                                  3904,
                                  3924
                                ],
                                "loc": {
                                  "start": {
                                    "line": 94,
                                    "column": 12
                                  },
                                  "end": {
                                    "line": 94,
                                    "column": 32
                                  }
                                }
                              },
                              "consequent": {
                                "type": "BlockStatement",
                                "body": [
                                  {
                                    "type": "ExpressionStatement",
                                    "expression": {
                                      "type": "CallExpression",
                                      "callee": {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "ThisExpression",
                                          "range": [
                                            3940,
                                            3944
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 95,
                                              "column": 12
                                            },
                                            "end": {
                                              "line": 95,
                                              "column": 16
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "add",
                                          "range": [
                                            3945,
                                            3948
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 95,
                                              "column": 17
                                            },
                                            "end": {
                                              "line": 95,
                                              "column": 20
                                            }
                                          }
                                        },
                                        "range": [
                                          3940,
                                          3948
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 95,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 95,
                                            "column": 20
                                          }
                                        }
                                      },
                                      "arguments": [
                                        {
                                          "type": "AssignmentExpression",
                                          "operator": "=",
                                          "left": {
                                            "type": "MemberExpression",
                                            "computed": false,
                                            "object": {
                                              "type": "ThisExpression",
                                              "range": [
                                                3949,
                                                3953
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 95,
                                                  "column": 21
                                                },
                                                "end": {
                                                  "line": 95,
                                                  "column": 25
                                                }
                                              }
                                            },
                                            "property": {
                                              "type": "Identifier",
                                              "name": "durationSubscription",
                                              "range": [
                                                3954,
                                                3974
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 95,
                                                  "column": 26
                                                },
                                                "end": {
                                                  "line": 95,
                                                  "column": 46
                                                }
                                              }
                                            },
                                            "range": [
                                              3949,
                                              3974
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 95,
                                                "column": 21
                                              },
                                              "end": {
                                                "line": 95,
                                                "column": 46
                                              }
                                            }
                                          },
                                          "right": {
                                            "type": "Identifier",
                                            "name": "subscription",
                                            "range": [
                                              3977,
                                              3989
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 95,
                                                "column": 49
                                              },
                                              "end": {
                                                "line": 95,
                                                "column": 61
                                              }
                                            }
                                          },
                                          "range": [
                                            3949,
                                            3989
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 95,
                                              "column": 21
                                            },
                                            "end": {
                                              "line": 95,
                                              "column": 61
                                            }
                                          }
                                        }
                                      ],
                                      "range": [
                                        3940,
                                        3990
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 95,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 95,
                                          "column": 62
                                        }
                                      }
                                    },
                                    "range": [
                                      3940,
                                      3991
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 95,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 95,
                                        "column": 63
                                      }
                                    }
                                  }
                                ],
                                "range": [
                                  3926,
                                  4001
                                ],
                                "loc": {
                                  "start": {
                                    "line": 94,
                                    "column": 34
                                  },
                                  "end": {
                                    "line": 96,
                                    "column": 9
                                  }
                                }
                              },
                              "alternate": null,
                              "range": [
                                3900,
                                4001
                              ],
                              "loc": {
                                "start": {
                                  "line": 94,
                                  "column": 8
                                },
                                "end": {
                                  "line": 96,
                                  "column": 9
                                }
                              }
                            }
                          ],
                          "range": [
                            3603,
                            4007
                          ],
                          "loc": {
                            "start": {
                              "line": 85,
                              "column": 71
                            },
                            "end": {
                              "line": 97,
                              "column": 5
                            }
                          }
                        },
                        "generator": false,
                        "expression": false,
                        "range": [
                          3576,
                          4007
                        ],
                        "loc": {
                          "start": {
                            "line": 85,
                            "column": 44
                          },
                          "end": {
                            "line": 97,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        3536,
                        4007
                      ],
                      "loc": {
                        "start": {
                          "line": 85,
                          "column": 4
                        },
                        "end": {
                          "line": 97,
                          "column": 5
                        }
                      }
                    },
                    "range": [
                      3536,
                      4008
                    ],
                    "loc": {
                      "start": {
                        "line": 85,
                        "column": 4
                      },
                      "end": {
                        "line": 97,
                        "column": 6
                      }
                    }
                  },
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "AssignmentExpression",
                      "operator": "=",
                      "left": {
                        "type": "MemberExpression",
                        "computed": false,
                        "object": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "Identifier",
                            "name": "DebounceSubscriber",
                            "range": [
                              4013,
                              4031
                            ],
                            "loc": {
                              "start": {
                                "line": 98,
                                "column": 4
                              },
                              "end": {
                                "line": 98,
                                "column": 22
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "prototype",
                            "range": [
                              4032,
                              4041
                            ],
                            "loc": {
                              "start": {
                                "line": 98,
                                "column": 23
                              },
                              "end": {
                                "line": 98,
                                "column": 32
                              }
                            }
                          },
                          "range": [
                            4013,
                            4041
                          ],
                          "loc": {
                            "start": {
                              "line": 98,
                              "column": 4
                            },
                            "end": {
                              "line": 98,
                              "column": 32
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "notifyNext",
                          "range": [
                            4042,
                            4052
                          ],
                          "loc": {
                            "start": {
                              "line": 98,
                              "column": 33
                            },
                            "end": {
                              "line": 98,
                              "column": 43
                            }
                          }
                        },
                        "range": [
                          4013,
                          4052
                        ],
                        "loc": {
                          "start": {
                            "line": 98,
                            "column": 4
                          },
                          "end": {
                            "line": 98,
                            "column": 43
                          }
                        }
                      },
                      "right": {
                        "type": "FunctionExpression",
                        "id": null,
                        "params": [
                          {
                            "type": "Identifier",
                            "name": "outerValue",
                            "range": [
                              4065,
                              4075
                            ],
                            "loc": {
                              "start": {
                                "line": 98,
                                "column": 56
                              },
                              "end": {
                                "line": 98,
                                "column": 66
                              }
                            }
                          },
                          {
                            "type": "Identifier",
                            "name": "innerValue",
                            "range": [
                              4077,
                              4087
                            ],
                            "loc": {
                              "start": {
                                "line": 98,
                                "column": 68
                              },
                              "end": {
                                "line": 98,
                                "column": 78
                              }
                            }
                          },
                          {
                            "type": "Identifier",
                            "name": "outerIndex",
                            "range": [
                              4089,
                              4099
                            ],
                            "loc": {
                              "start": {
                                "line": 98,
                                "column": 80
                              },
                              "end": {
                                "line": 98,
                                "column": 90
                              }
                            }
                          },
                          {
                            "type": "Identifier",
                            "name": "innerIndex",
                            "range": [
                              4101,
                              4111
                            ],
                            "loc": {
                              "start": {
                                "line": 98,
                                "column": 92
                              },
                              "end": {
                                "line": 98,
                                "column": 102
                              }
                            }
                          },
                          {
                            "type": "Identifier",
                            "name": "innerSub",
                            "range": [
                              4113,
                              4121
                            ],
                            "loc": {
                              "start": {
                                "line": 98,
                                "column": 104
                              },
                              "end": {
                                "line": 98,
                                "column": 112
                              }
                            }
                          }
                        ],
                        "body": {
                          "type": "BlockStatement",
                          "body": [
                            {
                              "type": "ExpressionStatement",
                              "expression": {
                                "type": "CallExpression",
                                "callee": {
                                  "type": "MemberExpression",
                                  "computed": false,
                                  "object": {
                                    "type": "ThisExpression",
                                    "range": [
                                      4133,
                                      4137
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 99,
                                        "column": 8
                                      },
                                      "end": {
                                        "line": 99,
                                        "column": 12
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "emitValue",
                                    "range": [
                                      4138,
                                      4147
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 99,
                                        "column": 13
                                      },
                                      "end": {
                                        "line": 99,
                                        "column": 22
                                      }
                                    }
                                  },
                                  "range": [
                                    4133,
                                    4147
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 99,
                                      "column": 8
                                    },
                                    "end": {
                                      "line": 99,
                                      "column": 22
                                    }
                                  }
                                },
                                "arguments": [],
                                "range": [
                                  4133,
                                  4149
                                ],
                                "loc": {
                                  "start": {
                                    "line": 99,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 99,
                                    "column": 24
                                  }
                                }
                              },
                              "range": [
                                4133,
                                4150
                              ],
                              "loc": {
                                "start": {
                                  "line": 99,
                                  "column": 8
                                },
                                "end": {
                                  "line": 99,
                                  "column": 25
                                }
                              }
                            }
                          ],
                          "range": [
                            4123,
                            4156
                          ],
                          "loc": {
                            "start": {
                              "line": 98,
                              "column": 114
                            },
                            "end": {
                              "line": 100,
                              "column": 5
                            }
                          }
                        },
                        "generator": false,
                        "expression": false,
                        "range": [
                          4055,
                          4156
                        ],
                        "loc": {
                          "start": {
                            "line": 98,
                            "column": 46
                          },
                          "end": {
                            "line": 100,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        4013,
                        4156
                      ],
                      "loc": {
                        "start": {
                          "line": 98,
                          "column": 4
                        },
                        "end": {
                          "line": 100,
                          "column": 5
                        }
                      }
                    },
                    "range": [
                      4013,
                      4157
                    ],
                    "loc": {
                      "start": {
                        "line": 98,
                        "column": 4
                      },
                      "end": {
                        "line": 100,
                        "column": 6
                      }
                    }
                  },
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "AssignmentExpression",
                      "operator": "=",
                      "left": {
                        "type": "MemberExpression",
                        "computed": false,
                        "object": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "Identifier",
                            "name": "DebounceSubscriber",
                            "range": [
                              4162,
                              4180
                            ],
                            "loc": {
                              "start": {
                                "line": 101,
                                "column": 4
                              },
                              "end": {
                                "line": 101,
                                "column": 22
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "prototype",
                            "range": [
                              4181,
                              4190
                            ],
                            "loc": {
                              "start": {
                                "line": 101,
                                "column": 23
                              },
                              "end": {
                                "line": 101,
                                "column": 32
                              }
                            }
                          },
                          "range": [
                            4162,
                            4190
                          ],
                          "loc": {
                            "start": {
                              "line": 101,
                              "column": 4
                            },
                            "end": {
                              "line": 101,
                              "column": 32
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "notifyComplete",
                          "range": [
                            4191,
                            4205
                          ],
                          "loc": {
                            "start": {
                              "line": 101,
                              "column": 33
                            },
                            "end": {
                              "line": 101,
                              "column": 47
                            }
                          }
                        },
                        "range": [
                          4162,
                          4205
                        ],
                        "loc": {
                          "start": {
                            "line": 101,
                            "column": 4
                          },
                          "end": {
                            "line": 101,
                            "column": 47
                          }
                        }
                      },
                      "right": {
                        "type": "FunctionExpression",
                        "id": null,
                        "params": [],
                        "body": {
                          "type": "BlockStatement",
                          "body": [
                            {
                              "type": "ExpressionStatement",
                              "expression": {
                                "type": "CallExpression",
                                "callee": {
                                  "type": "MemberExpression",
                                  "computed": false,
                                  "object": {
                                    "type": "ThisExpression",
                                    "range": [
                                      4230,
                                      4234
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 102,
                                        "column": 8
                                      },
                                      "end": {
                                        "line": 102,
                                        "column": 12
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "emitValue",
                                    "range": [
                                      4235,
                                      4244
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 102,
                                        "column": 13
                                      },
                                      "end": {
                                        "line": 102,
                                        "column": 22
                                      }
                                    }
                                  },
                                  "range": [
                                    4230,
                                    4244
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 102,
                                      "column": 8
                                    },
                                    "end": {
                                      "line": 102,
                                      "column": 22
                                    }
                                  }
                                },
                                "arguments": [],
                                "range": [
                                  4230,
                                  4246
                                ],
                                "loc": {
                                  "start": {
                                    "line": 102,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 102,
                                    "column": 24
                                  }
                                }
                              },
                              "range": [
                                4230,
                                4247
                              ],
                              "loc": {
                                "start": {
                                  "line": 102,
                                  "column": 8
                                },
                                "end": {
                                  "line": 102,
                                  "column": 25
                                }
                              }
                            }
                          ],
                          "range": [
                            4220,
                            4253
                          ],
                          "loc": {
                            "start": {
                              "line": 101,
                              "column": 62
                            },
                            "end": {
                              "line": 103,
                              "column": 5
                            }
                          }
                        },
                        "generator": false,
                        "expression": false,
                        "range": [
                          4208,
                          4253
                        ],
                        "loc": {
                          "start": {
                            "line": 101,
                            "column": 50
                          },
                          "end": {
                            "line": 103,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        4162,
                        4253
                      ],
                      "loc": {
                        "start": {
                          "line": 101,
                          "column": 4
                        },
                        "end": {
                          "line": 103,
                          "column": 5
                        }
                      }
                    },
                    "range": [
                      4162,
                      4254
                    ],
                    "loc": {
                      "start": {
                        "line": 101,
                        "column": 4
                      },
                      "end": {
                        "line": 103,
                        "column": 6
                      }
                    }
                  },
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "AssignmentExpression",
                      "operator": "=",
                      "left": {
                        "type": "MemberExpression",
                        "computed": false,
                        "object": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "Identifier",
                            "name": "DebounceSubscriber",
                            "range": [
                              4259,
                              4277
                            ],
                            "loc": {
                              "start": {
                                "line": 104,
                                "column": 4
                              },
                              "end": {
                                "line": 104,
                                "column": 22
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "prototype",
                            "range": [
                              4278,
                              4287
                            ],
                            "loc": {
                              "start": {
                                "line": 104,
                                "column": 23
                              },
                              "end": {
                                "line": 104,
                                "column": 32
                              }
                            }
                          },
                          "range": [
                            4259,
                            4287
                          ],
                          "loc": {
                            "start": {
                              "line": 104,
                              "column": 4
                            },
                            "end": {
                              "line": 104,
                              "column": 32
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "emitValue",
                          "range": [
                            4288,
                            4297
                          ],
                          "loc": {
                            "start": {
                              "line": 104,
                              "column": 33
                            },
                            "end": {
                              "line": 104,
                              "column": 42
                            }
                          }
                        },
                        "range": [
                          4259,
                          4297
                        ],
                        "loc": {
                          "start": {
                            "line": 104,
                            "column": 4
                          },
                          "end": {
                            "line": 104,
                            "column": 42
                          }
                        }
                      },
                      "right": {
                        "type": "FunctionExpression",
                        "id": null,
                        "params": [],
                        "body": {
                          "type": "BlockStatement",
                          "body": [
                            {
                              "type": "IfStatement",
                              "test": {
                                "type": "MemberExpression",
                                "computed": false,
                                "object": {
                                  "type": "ThisExpression",
                                  "range": [
                                    4326,
                                    4330
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 105,
                                      "column": 12
                                    },
                                    "end": {
                                      "line": 105,
                                      "column": 16
                                    }
                                  }
                                },
                                "property": {
                                  "type": "Identifier",
                                  "name": "hasValue",
                                  "range": [
                                    4331,
                                    4339
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 105,
                                      "column": 17
                                    },
                                    "end": {
                                      "line": 105,
                                      "column": 25
                                    }
                                  }
                                },
                                "range": [
                                  4326,
                                  4339
                                ],
                                "loc": {
                                  "start": {
                                    "line": 105,
                                    "column": 12
                                  },
                                  "end": {
                                    "line": 105,
                                    "column": 25
                                  }
                                }
                              },
                              "consequent": {
                                "type": "BlockStatement",
                                "body": [
                                  {
                                    "type": "VariableDeclaration",
                                    "declarations": [
                                      {
                                        "type": "VariableDeclarator",
                                        "id": {
                                          "type": "Identifier",
                                          "name": "value",
                                          "range": [
                                            4359,
                                            4364
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 106,
                                              "column": 16
                                            },
                                            "end": {
                                              "line": 106,
                                              "column": 21
                                            }
                                          }
                                        },
                                        "init": {
                                          "type": "MemberExpression",
                                          "computed": false,
                                          "object": {
                                            "type": "ThisExpression",
                                            "range": [
                                              4367,
                                              4371
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 106,
                                                "column": 24
                                              },
                                              "end": {
                                                "line": 106,
                                                "column": 28
                                              }
                                            }
                                          },
                                          "property": {
                                            "type": "Identifier",
                                            "name": "value",
                                            "range": [
                                              4372,
                                              4377
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 106,
                                                "column": 29
                                              },
                                              "end": {
                                                "line": 106,
                                                "column": 34
                                              }
                                            }
                                          },
                                          "range": [
                                            4367,
                                            4377
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 106,
                                              "column": 24
                                            },
                                            "end": {
                                              "line": 106,
                                              "column": 34
                                            }
                                          }
                                        },
                                        "range": [
                                          4359,
                                          4377
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 106,
                                            "column": 16
                                          },
                                          "end": {
                                            "line": 106,
                                            "column": 34
                                          }
                                        }
                                      }
                                    ],
                                    "kind": "var",
                                    "range": [
                                      4355,
                                      4378
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 106,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 106,
                                        "column": 35
                                      }
                                    }
                                  },
                                  {
                                    "type": "VariableDeclaration",
                                    "declarations": [
                                      {
                                        "type": "VariableDeclarator",
                                        "id": {
                                          "type": "Identifier",
                                          "name": "subscription",
                                          "range": [
                                            4395,
                                            4407
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 107,
                                              "column": 16
                                            },
                                            "end": {
                                              "line": 107,
                                              "column": 28
                                            }
                                          }
                                        },
                                        "init": {
                                          "type": "MemberExpression",
                                          "computed": false,
                                          "object": {
                                            "type": "ThisExpression",
                                            "range": [
                                              4410,
                                              4414
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 107,
                                                "column": 31
                                              },
                                              "end": {
                                                "line": 107,
                                                "column": 35
                                              }
                                            }
                                          },
                                          "property": {
                                            "type": "Identifier",
                                            "name": "durationSubscription",
                                            "range": [
                                              4415,
                                              4435
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 107,
                                                "column": 36
                                              },
                                              "end": {
                                                "line": 107,
                                                "column": 56
                                              }
                                            }
                                          },
                                          "range": [
                                            4410,
                                            4435
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 107,
                                              "column": 31
                                            },
                                            "end": {
                                              "line": 107,
                                              "column": 56
                                            }
                                          }
                                        },
                                        "range": [
                                          4395,
                                          4435
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 107,
                                            "column": 16
                                          },
                                          "end": {
                                            "line": 107,
                                            "column": 56
                                          }
                                        }
                                      }
                                    ],
                                    "kind": "var",
                                    "range": [
                                      4391,
                                      4436
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 107,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 107,
                                        "column": 57
                                      }
                                    }
                                  },
                                  {
                                    "type": "IfStatement",
                                    "test": {
                                      "type": "Identifier",
                                      "name": "subscription",
                                      "range": [
                                        4453,
                                        4465
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 108,
                                          "column": 16
                                        },
                                        "end": {
                                          "line": 108,
                                          "column": 28
                                        }
                                      }
                                    },
                                    "consequent": {
                                      "type": "BlockStatement",
                                      "body": [
                                        {
                                          "type": "ExpressionStatement",
                                          "expression": {
                                            "type": "AssignmentExpression",
                                            "operator": "=",
                                            "left": {
                                              "type": "MemberExpression",
                                              "computed": false,
                                              "object": {
                                                "type": "ThisExpression",
                                                "range": [
                                                  4485,
                                                  4489
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 109,
                                                    "column": 16
                                                  },
                                                  "end": {
                                                    "line": 109,
                                                    "column": 20
                                                  }
                                                }
                                              },
                                              "property": {
                                                "type": "Identifier",
                                                "name": "durationSubscription",
                                                "range": [
                                                  4490,
                                                  4510
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 109,
                                                    "column": 21
                                                  },
                                                  "end": {
                                                    "line": 109,
                                                    "column": 41
                                                  }
                                                }
                                              },
                                              "range": [
                                                4485,
                                                4510
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 109,
                                                  "column": 16
                                                },
                                                "end": {
                                                  "line": 109,
                                                  "column": 41
                                                }
                                              }
                                            },
                                            "right": {
                                              "type": "Literal",
                                              "value": null,
                                              "raw": "null",
                                              "range": [
                                                4513,
                                                4517
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 109,
                                                  "column": 44
                                                },
                                                "end": {
                                                  "line": 109,
                                                  "column": 48
                                                }
                                              }
                                            },
                                            "range": [
                                              4485,
                                              4517
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 109,
                                                "column": 16
                                              },
                                              "end": {
                                                "line": 109,
                                                "column": 48
                                              }
                                            }
                                          },
                                          "range": [
                                            4485,
                                            4518
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 109,
                                              "column": 16
                                            },
                                            "end": {
                                              "line": 109,
                                              "column": 49
                                            }
                                          }
                                        },
                                        {
                                          "type": "ExpressionStatement",
                                          "expression": {
                                            "type": "CallExpression",
                                            "callee": {
                                              "type": "MemberExpression",
                                              "computed": false,
                                              "object": {
                                                "type": "Identifier",
                                                "name": "subscription",
                                                "range": [
                                                  4535,
                                                  4547
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 110,
                                                    "column": 16
                                                  },
                                                  "end": {
                                                    "line": 110,
                                                    "column": 28
                                                  }
                                                }
                                              },
                                              "property": {
                                                "type": "Identifier",
                                                "name": "unsubscribe",
                                                "range": [
                                                  4548,
                                                  4559
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 110,
                                                    "column": 29
                                                  },
                                                  "end": {
                                                    "line": 110,
                                                    "column": 40
                                                  }
                                                }
                                              },
                                              "range": [
                                                4535,
                                                4559
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 110,
                                                  "column": 16
                                                },
                                                "end": {
                                                  "line": 110,
                                                  "column": 40
                                                }
                                              }
                                            },
                                            "arguments": [],
                                            "range": [
                                              4535,
                                              4561
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 110,
                                                "column": 16
                                              },
                                              "end": {
                                                "line": 110,
                                                "column": 42
                                              }
                                            }
                                          },
                                          "range": [
                                            4535,
                                            4562
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 110,
                                              "column": 16
                                            },
                                            "end": {
                                              "line": 110,
                                              "column": 43
                                            }
                                          }
                                        },
                                        {
                                          "type": "ExpressionStatement",
                                          "expression": {
                                            "type": "CallExpression",
                                            "callee": {
                                              "type": "MemberExpression",
                                              "computed": false,
                                              "object": {
                                                "type": "ThisExpression",
                                                "range": [
                                                  4579,
                                                  4583
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 111,
                                                    "column": 16
                                                  },
                                                  "end": {
                                                    "line": 111,
                                                    "column": 20
                                                  }
                                                }
                                              },
                                              "property": {
                                                "type": "Identifier",
                                                "name": "remove",
                                                "range": [
                                                  4584,
                                                  4590
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 111,
                                                    "column": 21
                                                  },
                                                  "end": {
                                                    "line": 111,
                                                    "column": 27
                                                  }
                                                }
                                              },
                                              "range": [
                                                4579,
                                                4590
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 111,
                                                  "column": 16
                                                },
                                                "end": {
                                                  "line": 111,
                                                  "column": 27
                                                }
                                              }
                                            },
                                            "arguments": [
                                              {
                                                "type": "Identifier",
                                                "name": "subscription",
                                                "range": [
                                                  4591,
                                                  4603
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 111,
                                                    "column": 28
                                                  },
                                                  "end": {
                                                    "line": 111,
                                                    "column": 40
                                                  }
                                                }
                                              }
                                            ],
                                            "range": [
                                              4579,
                                              4604
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 111,
                                                "column": 16
                                              },
                                              "end": {
                                                "line": 111,
                                                "column": 41
                                              }
                                            }
                                          },
                                          "range": [
                                            4579,
                                            4605
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 111,
                                              "column": 16
                                            },
                                            "end": {
                                              "line": 111,
                                              "column": 42
                                            }
                                          }
                                        }
                                      ],
                                      "range": [
                                        4467,
                                        4619
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 108,
                                          "column": 30
                                        },
                                        "end": {
                                          "line": 112,
                                          "column": 13
                                        }
                                      }
                                    },
                                    "alternate": null,
                                    "range": [
                                      4449,
                                      4619
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 108,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 112,
                                        "column": 13
                                      }
                                    }
                                  },
                                  {
                                    "type": "ExpressionStatement",
                                    "expression": {
                                      "type": "AssignmentExpression",
                                      "operator": "=",
                                      "left": {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "ThisExpression",
                                          "range": [
                                            4632,
                                            4636
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 113,
                                              "column": 12
                                            },
                                            "end": {
                                              "line": 113,
                                              "column": 16
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "value",
                                          "range": [
                                            4637,
                                            4642
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 113,
                                              "column": 17
                                            },
                                            "end": {
                                              "line": 113,
                                              "column": 22
                                            }
                                          }
                                        },
                                        "range": [
                                          4632,
                                          4642
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 113,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 113,
                                            "column": 22
                                          }
                                        }
                                      },
                                      "right": {
                                        "type": "Literal",
                                        "value": null,
                                        "raw": "null",
                                        "range": [
                                          4645,
                                          4649
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 113,
                                            "column": 25
                                          },
                                          "end": {
                                            "line": 113,
                                            "column": 29
                                          }
                                        }
                                      },
                                      "range": [
                                        4632,
                                        4649
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 113,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 113,
                                          "column": 29
                                        }
                                      }
                                    },
                                    "range": [
                                      4632,
                                      4650
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 113,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 113,
                                        "column": 30
                                      }
                                    }
                                  },
                                  {
                                    "type": "ExpressionStatement",
                                    "expression": {
                                      "type": "AssignmentExpression",
                                      "operator": "=",
                                      "left": {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "ThisExpression",
                                          "range": [
                                            4663,
                                            4667
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 114,
                                              "column": 12
                                            },
                                            "end": {
                                              "line": 114,
                                              "column": 16
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "hasValue",
                                          "range": [
                                            4668,
                                            4676
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 114,
                                              "column": 17
                                            },
                                            "end": {
                                              "line": 114,
                                              "column": 25
                                            }
                                          }
                                        },
                                        "range": [
                                          4663,
                                          4676
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 114,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 114,
                                            "column": 25
                                          }
                                        }
                                      },
                                      "right": {
                                        "type": "Literal",
                                        "value": false,
                                        "raw": "false",
                                        "range": [
                                          4679,
                                          4684
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 114,
                                            "column": 28
                                          },
                                          "end": {
                                            "line": 114,
                                            "column": 33
                                          }
                                        }
                                      },
                                      "range": [
                                        4663,
                                        4684
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 114,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 114,
                                          "column": 33
                                        }
                                      }
                                    },
                                    "range": [
                                      4663,
                                      4685
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 114,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 114,
                                        "column": 34
                                      }
                                    }
                                  },
                                  {
                                    "type": "ExpressionStatement",
                                    "expression": {
                                      "type": "CallExpression",
                                      "callee": {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "MemberExpression",
                                          "computed": false,
                                          "object": {
                                            "type": "MemberExpression",
                                            "computed": false,
                                            "object": {
                                              "type": "Identifier",
                                              "name": "_super",
                                              "range": [
                                                4698,
                                                4704
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 115,
                                                  "column": 12
                                                },
                                                "end": {
                                                  "line": 115,
                                                  "column": 18
                                                }
                                              }
                                            },
                                            "property": {
                                              "type": "Identifier",
                                              "name": "prototype",
                                              "range": [
                                                4705,
                                                4714
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 115,
                                                  "column": 19
                                                },
                                                "end": {
                                                  "line": 115,
                                                  "column": 28
                                                }
                                              }
                                            },
                                            "range": [
                                              4698,
                                              4714
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 115,
                                                "column": 12
                                              },
                                              "end": {
                                                "line": 115,
                                                "column": 28
                                              }
                                            }
                                          },
                                          "property": {
                                            "type": "Identifier",
                                            "name": "_next",
                                            "range": [
                                              4715,
                                              4720
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 115,
                                                "column": 29
                                              },
                                              "end": {
                                                "line": 115,
                                                "column": 34
                                              }
                                            }
                                          },
                                          "range": [
                                            4698,
                                            4720
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 115,
                                              "column": 12
                                            },
                                            "end": {
                                              "line": 115,
                                              "column": 34
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "call",
                                          "range": [
                                            4721,
                                            4725
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 115,
                                              "column": 35
                                            },
                                            "end": {
                                              "line": 115,
                                              "column": 39
                                            }
                                          }
                                        },
                                        "range": [
                                          4698,
                                          4725
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 115,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 115,
                                            "column": 39
                                          }
                                        }
                                      },
                                      "arguments": [
                                        {
                                          "type": "ThisExpression",
                                          "range": [
                                            4726,
                                            4730
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 115,
                                              "column": 40
                                            },
                                            "end": {
                                              "line": 115,
                                              "column": 44
                                            }
                                          }
                                        },
                                        {
                                          "type": "Identifier",
                                          "name": "value",
                                          "range": [
                                            4732,
                                            4737
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 115,
                                              "column": 46
                                            },
                                            "end": {
                                              "line": 115,
                                              "column": 51
                                            }
                                          }
                                        }
                                      ],
                                      "range": [
                                        4698,
                                        4738
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 115,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 115,
                                          "column": 52
                                        }
                                      }
                                    },
                                    "range": [
                                      4698,
                                      4739
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 115,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 115,
                                        "column": 53
                                      }
                                    }
                                  }
                                ],
                                "range": [
                                  4341,
                                  4749
                                ],
                                "loc": {
                                  "start": {
                                    "line": 105,
                                    "column": 27
                                  },
                                  "end": {
                                    "line": 116,
                                    "column": 9
                                  }
                                }
                              },
                              "alternate": null,
                              "range": [
                                4322,
                                4749
                              ],
                              "loc": {
                                "start": {
                                  "line": 105,
                                  "column": 8
                                },
                                "end": {
                                  "line": 116,
                                  "column": 9
                                }
                              }
                            }
                          ],
                          "range": [
                            4312,
                            4755
                          ],
                          "loc": {
                            "start": {
                              "line": 104,
                              "column": 57
                            },
                            "end": {
                              "line": 117,
                              "column": 5
                            }
                          }
                        },
                        "generator": false,
                        "expression": false,
                        "range": [
                          4300,
                          4755
                        ],
                        "loc": {
                          "start": {
                            "line": 104,
                            "column": 45
                          },
                          "end": {
                            "line": 117,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        4259,
                        4755
                      ],
                      "loc": {
                        "start": {
                          "line": 104,
                          "column": 4
                        },
                        "end": {
                          "line": 117,
                          "column": 5
                        }
                      }
                    },
                    "range": [
                      4259,
                      4756
                    ],
                    "loc": {
                      "start": {
                        "line": 104,
                        "column": 4
                      },
                      "end": {
                        "line": 117,
                        "column": 6
                      }
                    }
                  },
                  {
                    "type": "ReturnStatement",
                    "argument": {
                      "type": "Identifier",
                      "name": "DebounceSubscriber",
                      "range": [
                        4768,
                        4786
                      ],
                      "loc": {
                        "start": {
                          "line": 118,
                          "column": 11
                        },
                        "end": {
                          "line": 118,
                          "column": 29
                        }
                      }
                    },
                    "range": [
                      4761,
                      4787
                    ],
                    "loc": {
                      "start": {
                        "line": 118,
                        "column": 4
                      },
                      "end": {
                        "line": 118,
                        "column": 30
                      }
                    }
                  }
                ],
                "range": [
                  2808,
                  4789
                ],
                "loc": {
                  "start": {
                    "line": 62,
                    "column": 44
                  },
                  "end": {
                    "line": 119,
                    "column": 1
                  }
                }
              },
              "generator": false,
              "expression": false,
              "range": [
                2790,
                4789
              ],
              "loc": {
                "start": {
                  "line": 62,
                  "column": 26
                },
                "end": {
                  "line": 119,
                  "column": 1
                }
              }
            },
            "arguments": [
              {
                "type": "Identifier",
                "name": "OuterSubscriber",
                "range": [
                  4790,
                  4805
                ],
                "loc": {
                  "start": {
                    "line": 119,
                    "column": 2
                  },
                  "end": {
                    "line": 119,
                    "column": 17
                  }
                }
              }
            ],
            "range": [
              2790,
              4806
            ],
            "loc": {
              "start": {
                "line": 62,
                "column": 26
              },
              "end": {
                "line": 119,
                "column": 18
              }
            }
          },
          "range": [
            2768,
            4807
          ],
          "loc": {
            "start": {
              "line": 62,
              "column": 4
            },
            "end": {
              "line": 119,
              "column": 19
            }
          }
        }
      ],
      "kind": "var",
      "range": [
        2764,
        4808
      ],
      "loc": {
        "start": {
          "line": 62,
          "column": 0
        },
        "end": {
          "line": 119,
          "column": 20
        }
      },
      "leadingComments": [
        {
          "type": "Block",
          "value": "*\n * We need this JSDoc comment for affecting ESDoc.\n * @ignore\n * @extends {Ignored}\n ",
          "range": [
            2672,
            2763
          ],
          "loc": {
            "start": {
              "line": 57,
              "column": 0
            },
            "end": {
              "line": 61,
              "column": 3
            }
          }
        }
      ],
      "trailingComments": [
        {
          "type": "Line",
          "value": "# sourceMappingURL=debounce.js.map",
          "range": [
            4809,
            4845
          ],
          "loc": {
            "start": {
              "line": 120,
              "column": 0
            },
            "end": {
              "line": 120,
              "column": 36
            }
          }
        }
      ]
    }
  ],
  "sourceType": "module",
  "range": [
    0,
    4808
  ],
  "loc": {
    "start": {
      "line": 1,
      "column": 0
    },
    "end": {
      "line": 119,
      "column": 20
    }
  },
  "comments": [
    {
      "type": "Block",
      "value": "*\n * Emits a value from the source Observable only after a particular time span\n * determined by another Observable has passed without another source emission.\n *\n * <span class=\"informal\">It's like {@link debounceTime}, but the time span of\n * emission silence is determined by a second Observable.</span>\n *\n * <img src=\"./img/debounce.png\" width=\"100%\">\n *\n * `debounce` delays values emitted by the source Observable, but drops previous\n * pending delayed emissions if a new value arrives on the source Observable.\n * This operator keeps track of the most recent value from the source\n * Observable, and spawns a duration Observable by calling the\n * `durationSelector` function. The value is emitted only when the duration\n * Observable emits a value or completes, and if no other value was emitted on\n * the source Observable since the duration Observable was spawned. If a new\n * value appears before the duration Observable emits, the previous value will\n * be dropped and will not be emitted on the output Observable.\n *\n * Like {@link debounceTime}, this is a rate-limiting operator, and also a\n * delay-like operator since output emissions do not necessarily occur at the\n * same time as they did on the source Observable.\n *\n * @example <caption>Emit the most recent click after a burst of clicks</caption>\n * var clicks = Rx.Observable.fromEvent(document, 'click');\n * var result = clicks.debounce(() => Rx.Observable.interval(1000));\n * result.subscribe(x => console.log(x));\n *\n * @see {@link audit}\n * @see {@link debounceTime}\n * @see {@link delayWhen}\n * @see {@link throttle}\n *\n * @param {function(value: T): Observable|Promise} durationSelector A function\n * that receives a value from the source Observable, for computing the timeout\n * duration for each source value, returned as an Observable or a Promise.\n * @return {Observable} An Observable that delays the emissions of the source\n * Observable by the specified duration Observable returned by\n * `durationSelector`, and may drop some values if they occur too frequently.\n * @method debounce\n * @owner Observable\n ",
      "range": [
        117,
        2213
      ],
      "loc": {
        "start": {
          "line": 3,
          "column": 0
        },
        "end": {
          "line": 44,
          "column": 3
        }
      }
    },
    {
      "type": "Block",
      "value": "*\n * We need this JSDoc comment for affecting ESDoc.\n * @ignore\n * @extends {Ignored}\n ",
      "range": [
        2672,
        2763
      ],
      "loc": {
        "start": {
          "line": 57,
          "column": 0
        },
        "end": {
          "line": 61,
          "column": 3
        }
      }
    },
    {
      "type": "Line",
      "value": "# sourceMappingURL=debounce.js.map",
      "range": [
        4809,
        4845
      ],
      "loc": {
        "start": {
          "line": 120,
          "column": 0
        },
        "end": {
          "line": 120,
          "column": 36
        }
      }
    }
  ]
}