{
  "type": "Program",
  "body": [
    {
      "type": "ImportDeclaration",
      "specifiers": [
        {
          "type": "ImportSpecifier",
          "local": {
            "type": "Identifier",
            "name": "Subscriber",
            "range": [
              9,
              19
            ],
            "loc": {
              "start": {
                "line": 1,
                "column": 9
              },
              "end": {
                "line": 1,
                "column": 19
              }
            }
          },
          "imported": {
            "type": "Identifier",
            "name": "Subscriber",
            "range": [
              9,
              19
            ],
            "loc": {
              "start": {
                "line": 1,
                "column": 9
              },
              "end": {
                "line": 1,
                "column": 19
              }
            }
          },
          "range": [
            9,
            19
          ],
          "loc": {
            "start": {
              "line": 1,
              "column": 9
            },
            "end": {
              "line": 1,
              "column": 19
            }
          }
        }
      ],
      "source": {
        "type": "Literal",
        "value": "../Subscriber",
        "raw": "'../Subscriber'",
        "range": [
          27,
          42
        ],
        "loc": {
          "start": {
            "line": 1,
            "column": 27
          },
          "end": {
            "line": 1,
            "column": 42
          }
        }
      },
      "range": [
        0,
        43
      ],
      "loc": {
        "start": {
          "line": 1,
          "column": 0
        },
        "end": {
          "line": 1,
          "column": 43
        }
      }
    },
    {
      "type": "ImportDeclaration",
      "specifiers": [
        {
          "type": "ImportSpecifier",
          "local": {
            "type": "Identifier",
            "name": "async",
            "range": [
              53,
              58
            ],
            "loc": {
              "start": {
                "line": 2,
                "column": 9
              },
              "end": {
                "line": 2,
                "column": 14
              }
            }
          },
          "imported": {
            "type": "Identifier",
            "name": "async",
            "range": [
              53,
              58
            ],
            "loc": {
              "start": {
                "line": 2,
                "column": 9
              },
              "end": {
                "line": 2,
                "column": 14
              }
            }
          },
          "range": [
            53,
            58
          ],
          "loc": {
            "start": {
              "line": 2,
              "column": 9
            },
            "end": {
              "line": 2,
              "column": 14
            }
          }
        }
      ],
      "source": {
        "type": "Literal",
        "value": "../scheduler/async",
        "raw": "'../scheduler/async'",
        "range": [
          66,
          86
        ],
        "loc": {
          "start": {
            "line": 2,
            "column": 22
          },
          "end": {
            "line": 2,
            "column": 42
          }
        }
      },
      "range": [
        44,
        87
      ],
      "loc": {
        "start": {
          "line": 2,
          "column": 0
        },
        "end": {
          "line": 2,
          "column": 43
        }
      },
      "trailingComments": [
        {
          "type": "Block",
          "value": "*\n * Emits a value from the source Observable only after a particular time span\n * has passed without another source emission.\n *\n * <span class=\"informal\">It's like {@link delay}, but passes only the most\n * recent value from each burst of emissions.</span>\n *\n * <img src=\"./img/debounceTime.png\" width=\"100%\">\n *\n * `debounceTime` delays values emitted by the source Observable, but drops\n * previous pending delayed emissions if a new value arrives on the source\n * Observable. This operator keeps track of the most recent value from the\n * source Observable, and emits that only when `dueTime` enough time has passed\n * without any other value appearing on the source Observable. If a new value\n * appears before `dueTime` silence occurs, the previous value will be dropped\n * and will not be emitted on the output Observable.\n *\n * This is a rate-limiting operator, because it is impossible for more than one\n * value to be emitted in any time window of duration `dueTime`, but it is also\n * a delay-like operator since output emissions do not occur at the same time as\n * they did on the source Observable. Optionally takes a {@link Scheduler} for\n * managing timers.\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.debounceTime(1000);\n * result.subscribe(x => console.log(x));\n *\n * @see {@link auditTime}\n * @see {@link debounce}\n * @see {@link delay}\n * @see {@link sampleTime}\n * @see {@link throttleTime}\n *\n * @param {number} dueTime The timeout duration in milliseconds (or the time\n * unit determined internally by the optional `scheduler`) for the window of\n * time required to wait for emission silence before emitting the most recent\n * source value.\n * @param {Scheduler} [scheduler=async] The {@link Scheduler} to use for\n * managing the timers that handle the timeout for each value.\n * @return {Observable} An Observable that delays the emissions of the source\n * Observable by the specified `dueTime`, and may drop some values if they occur\n * too frequently.\n * @method debounceTime\n * @owner Observable\n ",
          "range": [
            88,
            2241
          ],
          "loc": {
            "start": {
              "line": 3,
              "column": 0
            },
            "end": {
              "line": 48,
              "column": 3
            }
          }
        }
      ]
    },
    {
      "type": "ExportNamedDeclaration",
      "declaration": {
        "type": "FunctionDeclaration",
        "id": {
          "type": "Identifier",
          "name": "debounceTime",
          "range": [
            2258,
            2270
          ],
          "loc": {
            "start": {
              "line": 49,
              "column": 16
            },
            "end": {
              "line": 49,
              "column": 28
            }
          }
        },
        "params": [
          {
            "type": "Identifier",
            "name": "dueTime",
            "range": [
              2271,
              2278
            ],
            "loc": {
              "start": {
                "line": 49,
                "column": 29
              },
              "end": {
                "line": 49,
                "column": 36
              }
            }
          },
          {
            "type": "Identifier",
            "name": "scheduler",
            "range": [
              2280,
              2289
            ],
            "loc": {
              "start": {
                "line": 49,
                "column": 38
              },
              "end": {
                "line": 49,
                "column": 47
              }
            }
          }
        ],
        "body": {
          "type": "BlockStatement",
          "body": [
            {
              "type": "IfStatement",
              "test": {
                "type": "BinaryExpression",
                "operator": "===",
                "left": {
                  "type": "Identifier",
                  "name": "scheduler",
                  "range": [
                    2301,
                    2310
                  ],
                  "loc": {
                    "start": {
                      "line": 50,
                      "column": 8
                    },
                    "end": {
                      "line": 50,
                      "column": 17
                    }
                  }
                },
                "right": {
                  "type": "UnaryExpression",
                  "operator": "void",
                  "argument": {
                    "type": "Literal",
                    "value": 0,
                    "raw": "0",
                    "range": [
                      2320,
                      2321
                    ],
                    "loc": {
                      "start": {
                        "line": 50,
                        "column": 27
                      },
                      "end": {
                        "line": 50,
                        "column": 28
                      }
                    }
                  },
                  "prefix": true,
                  "range": [
                    2315,
                    2321
                  ],
                  "loc": {
                    "start": {
                      "line": 50,
                      "column": 22
                    },
                    "end": {
                      "line": 50,
                      "column": 28
                    }
                  }
                },
                "range": [
                  2301,
                  2321
                ],
                "loc": {
                  "start": {
                    "line": 50,
                    "column": 8
                  },
                  "end": {
                    "line": 50,
                    "column": 28
                  }
                }
              },
              "consequent": {
                "type": "BlockStatement",
                "body": [
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "AssignmentExpression",
                      "operator": "=",
                      "left": {
                        "type": "Identifier",
                        "name": "scheduler",
                        "range": [
                          2325,
                          2334
                        ],
                        "loc": {
                          "start": {
                            "line": 50,
                            "column": 32
                          },
                          "end": {
                            "line": 50,
                            "column": 41
                          }
                        }
                      },
                      "right": {
                        "type": "Identifier",
                        "name": "async",
                        "range": [
                          2337,
                          2342
                        ],
                        "loc": {
                          "start": {
                            "line": 50,
                            "column": 44
                          },
                          "end": {
                            "line": 50,
                            "column": 49
                          }
                        }
                      },
                      "range": [
                        2325,
                        2342
                      ],
                      "loc": {
                        "start": {
                          "line": 50,
                          "column": 32
                        },
                        "end": {
                          "line": 50,
                          "column": 49
                        }
                      }
                    },
                    "range": [
                      2325,
                      2343
                    ],
                    "loc": {
                      "start": {
                        "line": 50,
                        "column": 32
                      },
                      "end": {
                        "line": 50,
                        "column": 50
                      }
                    }
                  }
                ],
                "range": [
                  2323,
                  2345
                ],
                "loc": {
                  "start": {
                    "line": 50,
                    "column": 30
                  },
                  "end": {
                    "line": 50,
                    "column": 52
                  }
                }
              },
              "alternate": null,
              "range": [
                2297,
                2345
              ],
              "loc": {
                "start": {
                  "line": 50,
                  "column": 4
                },
                "end": {
                  "line": 50,
                  "column": 52
                }
              }
            },
            {
              "type": "ReturnStatement",
              "argument": {
                "type": "CallExpression",
                "callee": {
                  "type": "MemberExpression",
                  "computed": false,
                  "object": {
                    "type": "ThisExpression",
                    "range": [
                      2357,
                      2361
                    ],
                    "loc": {
                      "start": {
                        "line": 51,
                        "column": 11
                      },
                      "end": {
                        "line": 51,
                        "column": 15
                      }
                    }
                  },
                  "property": {
                    "type": "Identifier",
                    "name": "lift",
                    "range": [
                      2362,
                      2366
                    ],
                    "loc": {
                      "start": {
                        "line": 51,
                        "column": 16
                      },
                      "end": {
                        "line": 51,
                        "column": 20
                      }
                    }
                  },
                  "range": [
                    2357,
                    2366
                  ],
                  "loc": {
                    "start": {
                      "line": 51,
                      "column": 11
                    },
                    "end": {
                      "line": 51,
                      "column": 20
                    }
                  }
                },
                "arguments": [
                  {
                    "type": "NewExpression",
                    "callee": {
                      "type": "Identifier",
                      "name": "DebounceTimeOperator",
                      "range": [
                        2371,
                        2391
                      ],
                      "loc": {
                        "start": {
                          "line": 51,
                          "column": 25
                        },
                        "end": {
                          "line": 51,
                          "column": 45
                        }
                      }
                    },
                    "arguments": [
                      {
                        "type": "Identifier",
                        "name": "dueTime",
                        "range": [
                          2392,
                          2399
                        ],
                        "loc": {
                          "start": {
                            "line": 51,
                            "column": 46
                          },
                          "end": {
                            "line": 51,
                            "column": 53
                          }
                        }
                      },
                      {
                        "type": "Identifier",
                        "name": "scheduler",
                        "range": [
                          2401,
                          2410
                        ],
                        "loc": {
                          "start": {
                            "line": 51,
                            "column": 55
                          },
                          "end": {
                            "line": 51,
                            "column": 64
                          }
                        }
                      }
                    ],
                    "range": [
                      2367,
                      2411
                    ],
                    "loc": {
                      "start": {
                        "line": 51,
                        "column": 21
                      },
                      "end": {
                        "line": 51,
                        "column": 65
                      }
                    }
                  }
                ],
                "range": [
                  2357,
                  2412
                ],
                "loc": {
                  "start": {
                    "line": 51,
                    "column": 11
                  },
                  "end": {
                    "line": 51,
                    "column": 66
                  }
                }
              },
              "range": [
                2350,
                2413
              ],
              "loc": {
                "start": {
                  "line": 51,
                  "column": 4
                },
                "end": {
                  "line": 51,
                  "column": 67
                }
              }
            }
          ],
          "range": [
            2291,
            2415
          ],
          "loc": {
            "start": {
              "line": 49,
              "column": 49
            },
            "end": {
              "line": 52,
              "column": 1
            }
          }
        },
        "generator": false,
        "expression": false,
        "range": [
          2249,
          2415
        ],
        "loc": {
          "start": {
            "line": 49,
            "column": 7
          },
          "end": {
            "line": 52,
            "column": 1
          }
        },
        "leadingComments": [
          {
            "type": "Block",
            "value": "*\n * Emits a value from the source Observable only after a particular time span\n * has passed without another source emission.\n *\n * <span class=\"informal\">It's like {@link delay}, but passes only the most\n * recent value from each burst of emissions.</span>\n *\n * <img src=\"./img/debounceTime.png\" width=\"100%\">\n *\n * `debounceTime` delays values emitted by the source Observable, but drops\n * previous pending delayed emissions if a new value arrives on the source\n * Observable. This operator keeps track of the most recent value from the\n * source Observable, and emits that only when `dueTime` enough time has passed\n * without any other value appearing on the source Observable. If a new value\n * appears before `dueTime` silence occurs, the previous value will be dropped\n * and will not be emitted on the output Observable.\n *\n * This is a rate-limiting operator, because it is impossible for more than one\n * value to be emitted in any time window of duration `dueTime`, but it is also\n * a delay-like operator since output emissions do not occur at the same time as\n * they did on the source Observable. Optionally takes a {@link Scheduler} for\n * managing timers.\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.debounceTime(1000);\n * result.subscribe(x => console.log(x));\n *\n * @see {@link auditTime}\n * @see {@link debounce}\n * @see {@link delay}\n * @see {@link sampleTime}\n * @see {@link throttleTime}\n *\n * @param {number} dueTime The timeout duration in milliseconds (or the time\n * unit determined internally by the optional `scheduler`) for the window of\n * time required to wait for emission silence before emitting the most recent\n * source value.\n * @param {Scheduler} [scheduler=async] The {@link Scheduler} to use for\n * managing the timers that handle the timeout for each value.\n * @return {Observable} An Observable that delays the emissions of the source\n * Observable by the specified `dueTime`, and may drop some values if they occur\n * too frequently.\n * @method debounceTime\n * @owner Observable\n ",
            "range": [
              88,
              2241
            ],
            "loc": {
              "start": {
                "line": 3,
                "column": 0
              },
              "end": {
                "line": 48,
                "column": 3
              }
            }
          }
        ],
        "trailingComments": []
      },
      "specifiers": [],
      "source": null,
      "range": [
        2242,
        2415
      ],
      "loc": {
        "start": {
          "line": 49,
          "column": 0
        },
        "end": {
          "line": 52,
          "column": 1
        }
      },
      "leadingComments": [
        {
          "type": "Block",
          "value": "*\n * Emits a value from the source Observable only after a particular time span\n * has passed without another source emission.\n *\n * <span class=\"informal\">It's like {@link delay}, but passes only the most\n * recent value from each burst of emissions.</span>\n *\n * <img src=\"./img/debounceTime.png\" width=\"100%\">\n *\n * `debounceTime` delays values emitted by the source Observable, but drops\n * previous pending delayed emissions if a new value arrives on the source\n * Observable. This operator keeps track of the most recent value from the\n * source Observable, and emits that only when `dueTime` enough time has passed\n * without any other value appearing on the source Observable. If a new value\n * appears before `dueTime` silence occurs, the previous value will be dropped\n * and will not be emitted on the output Observable.\n *\n * This is a rate-limiting operator, because it is impossible for more than one\n * value to be emitted in any time window of duration `dueTime`, but it is also\n * a delay-like operator since output emissions do not occur at the same time as\n * they did on the source Observable. Optionally takes a {@link Scheduler} for\n * managing timers.\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.debounceTime(1000);\n * result.subscribe(x => console.log(x));\n *\n * @see {@link auditTime}\n * @see {@link debounce}\n * @see {@link delay}\n * @see {@link sampleTime}\n * @see {@link throttleTime}\n *\n * @param {number} dueTime The timeout duration in milliseconds (or the time\n * unit determined internally by the optional `scheduler`) for the window of\n * time required to wait for emission silence before emitting the most recent\n * source value.\n * @param {Scheduler} [scheduler=async] The {@link Scheduler} to use for\n * managing the timers that handle the timeout for each value.\n * @return {Observable} An Observable that delays the emissions of the source\n * Observable by the specified `dueTime`, and may drop some values if they occur\n * too frequently.\n * @method debounceTime\n * @owner Observable\n ",
          "range": [
            88,
            2241
          ],
          "loc": {
            "start": {
              "line": 3,
              "column": 0
            },
            "end": {
              "line": 48,
              "column": 3
            }
          }
        }
      ]
    },
    {
      "type": "VariableDeclaration",
      "declarations": [
        {
          "type": "VariableDeclarator",
          "id": {
            "type": "Identifier",
            "name": "DebounceTimeOperator",
            "range": [
              2420,
              2440
            ],
            "loc": {
              "start": {
                "line": 53,
                "column": 4
              },
              "end": {
                "line": 53,
                "column": 24
              }
            }
          },
          "init": {
            "type": "CallExpression",
            "callee": {
              "type": "FunctionExpression",
              "id": null,
              "params": [],
              "body": {
                "type": "BlockStatement",
                "body": [
                  {
                    "type": "FunctionDeclaration",
                    "id": {
                      "type": "Identifier",
                      "name": "DebounceTimeOperator",
                      "range": [
                        2471,
                        2491
                      ],
                      "loc": {
                        "start": {
                          "line": 54,
                          "column": 13
                        },
                        "end": {
                          "line": 54,
                          "column": 33
                        }
                      }
                    },
                    "params": [
                      {
                        "type": "Identifier",
                        "name": "dueTime",
                        "range": [
                          2492,
                          2499
                        ],
                        "loc": {
                          "start": {
                            "line": 54,
                            "column": 34
                          },
                          "end": {
                            "line": 54,
                            "column": 41
                          }
                        }
                      },
                      {
                        "type": "Identifier",
                        "name": "scheduler",
                        "range": [
                          2501,
                          2510
                        ],
                        "loc": {
                          "start": {
                            "line": 54,
                            "column": 43
                          },
                          "end": {
                            "line": 54,
                            "column": 52
                          }
                        }
                      }
                    ],
                    "body": {
                      "type": "BlockStatement",
                      "body": [
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "AssignmentExpression",
                            "operator": "=",
                            "left": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  2522,
                                  2526
                                ],
                                "loc": {
                                  "start": {
                                    "line": 55,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 55,
                                    "column": 12
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "dueTime",
                                "range": [
                                  2527,
                                  2534
                                ],
                                "loc": {
                                  "start": {
                                    "line": 55,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 55,
                                    "column": 20
                                  }
                                }
                              },
                              "range": [
                                2522,
                                2534
                              ],
                              "loc": {
                                "start": {
                                  "line": 55,
                                  "column": 8
                                },
                                "end": {
                                  "line": 55,
                                  "column": 20
                                }
                              }
                            },
                            "right": {
                              "type": "Identifier",
                              "name": "dueTime",
                              "range": [
                                2537,
                                2544
                              ],
                              "loc": {
                                "start": {
                                  "line": 55,
                                  "column": 23
                                },
                                "end": {
                                  "line": 55,
                                  "column": 30
                                }
                              }
                            },
                            "range": [
                              2522,
                              2544
                            ],
                            "loc": {
                              "start": {
                                "line": 55,
                                "column": 8
                              },
                              "end": {
                                "line": 55,
                                "column": 30
                              }
                            }
                          },
                          "range": [
                            2522,
                            2545
                          ],
                          "loc": {
                            "start": {
                              "line": 55,
                              "column": 8
                            },
                            "end": {
                              "line": 55,
                              "column": 31
                            }
                          }
                        },
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "AssignmentExpression",
                            "operator": "=",
                            "left": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  2554,
                                  2558
                                ],
                                "loc": {
                                  "start": {
                                    "line": 56,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 56,
                                    "column": 12
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "scheduler",
                                "range": [
                                  2559,
                                  2568
                                ],
                                "loc": {
                                  "start": {
                                    "line": 56,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 56,
                                    "column": 22
                                  }
                                }
                              },
                              "range": [
                                2554,
                                2568
                              ],
                              "loc": {
                                "start": {
                                  "line": 56,
                                  "column": 8
                                },
                                "end": {
                                  "line": 56,
                                  "column": 22
                                }
                              }
                            },
                            "right": {
                              "type": "Identifier",
                              "name": "scheduler",
                              "range": [
                                2571,
                                2580
                              ],
                              "loc": {
                                "start": {
                                  "line": 56,
                                  "column": 25
                                },
                                "end": {
                                  "line": 56,
                                  "column": 34
                                }
                              }
                            },
                            "range": [
                              2554,
                              2580
                            ],
                            "loc": {
                              "start": {
                                "line": 56,
                                "column": 8
                              },
                              "end": {
                                "line": 56,
                                "column": 34
                              }
                            }
                          },
                          "range": [
                            2554,
                            2581
                          ],
                          "loc": {
                            "start": {
                              "line": 56,
                              "column": 8
                            },
                            "end": {
                              "line": 56,
                              "column": 35
                            }
                          }
                        }
                      ],
                      "range": [
                        2512,
                        2587
                      ],
                      "loc": {
                        "start": {
                          "line": 54,
                          "column": 54
                        },
                        "end": {
                          "line": 57,
                          "column": 5
                        }
                      }
                    },
                    "generator": false,
                    "expression": false,
                    "range": [
                      2462,
                      2587
                    ],
                    "loc": {
                      "start": {
                        "line": 54,
                        "column": 4
                      },
                      "end": {
                        "line": 57,
                        "column": 5
                      }
                    }
                  },
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "AssignmentExpression",
                      "operator": "=",
                      "left": {
                        "type": "MemberExpression",
                        "computed": false,
                        "object": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "Identifier",
                            "name": "DebounceTimeOperator",
                            "range": [
                              2592,
                              2612
                            ],
                            "loc": {
                              "start": {
                                "line": 58,
                                "column": 4
                              },
                              "end": {
                                "line": 58,
                                "column": 24
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "prototype",
                            "range": [
                              2613,
                              2622
                            ],
                            "loc": {
                              "start": {
                                "line": 58,
                                "column": 25
                              },
                              "end": {
                                "line": 58,
                                "column": 34
                              }
                            }
                          },
                          "range": [
                            2592,
                            2622
                          ],
                          "loc": {
                            "start": {
                              "line": 58,
                              "column": 4
                            },
                            "end": {
                              "line": 58,
                              "column": 34
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "call",
                          "range": [
                            2623,
                            2627
                          ],
                          "loc": {
                            "start": {
                              "line": 58,
                              "column": 35
                            },
                            "end": {
                              "line": 58,
                              "column": 39
                            }
                          }
                        },
                        "range": [
                          2592,
                          2627
                        ],
                        "loc": {
                          "start": {
                            "line": 58,
                            "column": 4
                          },
                          "end": {
                            "line": 58,
                            "column": 39
                          }
                        }
                      },
                      "right": {
                        "type": "FunctionExpression",
                        "id": null,
                        "params": [
                          {
                            "type": "Identifier",
                            "name": "subscriber",
                            "range": [
                              2640,
                              2650
                            ],
                            "loc": {
                              "start": {
                                "line": 58,
                                "column": 52
                              },
                              "end": {
                                "line": 58,
                                "column": 62
                              }
                            }
                          },
                          {
                            "type": "Identifier",
                            "name": "source",
                            "range": [
                              2652,
                              2658
                            ],
                            "loc": {
                              "start": {
                                "line": 58,
                                "column": 64
                              },
                              "end": {
                                "line": 58,
                                "column": 70
                              }
                            }
                          }
                        ],
                        "body": {
                          "type": "BlockStatement",
                          "body": [
                            {
                              "type": "ReturnStatement",
                              "argument": {
                                "type": "CallExpression",
                                "callee": {
                                  "type": "MemberExpression",
                                  "computed": false,
                                  "object": {
                                    "type": "Identifier",
                                    "name": "source",
                                    "range": [
                                      2677,
                                      2683
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 59,
                                        "column": 15
                                      },
                                      "end": {
                                        "line": 59,
                                        "column": 21
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "_subscribe",
                                    "range": [
                                      2684,
                                      2694
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 59,
                                        "column": 22
                                      },
                                      "end": {
                                        "line": 59,
                                        "column": 32
                                      }
                                    }
                                  },
                                  "range": [
                                    2677,
                                    2694
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 59,
                                      "column": 15
                                    },
                                    "end": {
                                      "line": 59,
                                      "column": 32
                                    }
                                  }
                                },
                                "arguments": [
                                  {
                                    "type": "NewExpression",
                                    "callee": {
                                      "type": "Identifier",
                                      "name": "DebounceTimeSubscriber",
                                      "range": [
                                        2699,
                                        2721
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 59,
                                          "column": 37
                                        },
                                        "end": {
                                          "line": 59,
                                          "column": 59
                                        }
                                      }
                                    },
                                    "arguments": [
                                      {
                                        "type": "Identifier",
                                        "name": "subscriber",
                                        "range": [
                                          2722,
                                          2732
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 59,
                                            "column": 60
                                          },
                                          "end": {
                                            "line": 59,
                                            "column": 70
                                          }
                                        }
                                      },
                                      {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "ThisExpression",
                                          "range": [
                                            2734,
                                            2738
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 59,
                                              "column": 72
                                            },
                                            "end": {
                                              "line": 59,
                                              "column": 76
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "dueTime",
                                          "range": [
                                            2739,
                                            2746
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 59,
                                              "column": 77
                                            },
                                            "end": {
                                              "line": 59,
                                              "column": 84
                                            }
                                          }
                                        },
                                        "range": [
                                          2734,
                                          2746
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 59,
                                            "column": 72
                                          },
                                          "end": {
                                            "line": 59,
                                            "column": 84
                                          }
                                        }
                                      },
                                      {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "ThisExpression",
                                          "range": [
                                            2748,
                                            2752
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 59,
                                              "column": 86
                                            },
                                            "end": {
                                              "line": 59,
                                              "column": 90
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "scheduler",
                                          "range": [
                                            2753,
                                            2762
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 59,
                                              "column": 91
                                            },
                                            "end": {
                                              "line": 59,
                                              "column": 100
                                            }
                                          }
                                        },
                                        "range": [
                                          2748,
                                          2762
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 59,
                                            "column": 86
                                          },
                                          "end": {
                                            "line": 59,
                                            "column": 100
                                          }
                                        }
                                      }
                                    ],
                                    "range": [
                                      2695,
                                      2763
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 59,
                                        "column": 33
                                      },
                                      "end": {
                                        "line": 59,
                                        "column": 101
                                      }
                                    }
                                  }
                                ],
                                "range": [
                                  2677,
                                  2764
                                ],
                                "loc": {
                                  "start": {
                                    "line": 59,
                                    "column": 15
                                  },
                                  "end": {
                                    "line": 59,
                                    "column": 102
                                  }
                                }
                              },
                              "range": [
                                2670,
                                2765
                              ],
                              "loc": {
                                "start": {
                                  "line": 59,
                                  "column": 8
                                },
                                "end": {
                                  "line": 59,
                                  "column": 103
                                }
                              }
                            }
                          ],
                          "range": [
                            2660,
                            2771
                          ],
                          "loc": {
                            "start": {
                              "line": 58,
                              "column": 72
                            },
                            "end": {
                              "line": 60,
                              "column": 5
                            }
                          }
                        },
                        "generator": false,
                        "expression": false,
                        "range": [
                          2630,
                          2771
                        ],
                        "loc": {
                          "start": {
                            "line": 58,
                            "column": 42
                          },
                          "end": {
                            "line": 60,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        2592,
                        2771
                      ],
                      "loc": {
                        "start": {
                          "line": 58,
                          "column": 4
                        },
                        "end": {
                          "line": 60,
                          "column": 5
                        }
                      }
                    },
                    "range": [
                      2592,
                      2772
                    ],
                    "loc": {
                      "start": {
                        "line": 58,
                        "column": 4
                      },
                      "end": {
                        "line": 60,
                        "column": 6
                      }
                    }
                  },
                  {
                    "type": "ReturnStatement",
                    "argument": {
                      "type": "Identifier",
                      "name": "DebounceTimeOperator",
                      "range": [
                        2784,
                        2804
                      ],
                      "loc": {
                        "start": {
                          "line": 61,
                          "column": 11
                        },
                        "end": {
                          "line": 61,
                          "column": 31
                        }
                      }
                    },
                    "range": [
                      2777,
                      2805
                    ],
                    "loc": {
                      "start": {
                        "line": 61,
                        "column": 4
                      },
                      "end": {
                        "line": 61,
                        "column": 32
                      }
                    }
                  }
                ],
                "range": [
                  2456,
                  2807
                ],
                "loc": {
                  "start": {
                    "line": 53,
                    "column": 40
                  },
                  "end": {
                    "line": 62,
                    "column": 1
                  }
                }
              },
              "generator": false,
              "expression": false,
              "range": [
                2444,
                2807
              ],
              "loc": {
                "start": {
                  "line": 53,
                  "column": 28
                },
                "end": {
                  "line": 62,
                  "column": 1
                }
              }
            },
            "arguments": [],
            "range": [
              2444,
              2809
            ],
            "loc": {
              "start": {
                "line": 53,
                "column": 28
              },
              "end": {
                "line": 62,
                "column": 3
              }
            }
          },
          "range": [
            2420,
            2810
          ],
          "loc": {
            "start": {
              "line": 53,
              "column": 4
            },
            "end": {
              "line": 62,
              "column": 4
            }
          }
        }
      ],
      "kind": "var",
      "range": [
        2416,
        2811
      ],
      "loc": {
        "start": {
          "line": 53,
          "column": 0
        },
        "end": {
          "line": 62,
          "column": 5
        }
      },
      "trailingComments": [
        {
          "type": "Block",
          "value": "*\n * We need this JSDoc comment for affecting ESDoc.\n * @ignore\n * @extends {Ignored}\n ",
          "range": [
            2812,
            2903
          ],
          "loc": {
            "start": {
              "line": 63,
              "column": 0
            },
            "end": {
              "line": 67,
              "column": 3
            }
          }
        }
      ]
    },
    {
      "type": "VariableDeclaration",
      "declarations": [
        {
          "type": "VariableDeclarator",
          "id": {
            "type": "Identifier",
            "name": "DebounceTimeSubscriber",
            "range": [
              2908,
              2930
            ],
            "loc": {
              "start": {
                "line": 68,
                "column": 4
              },
              "end": {
                "line": 68,
                "column": 26
              }
            }
          },
          "init": {
            "type": "CallExpression",
            "callee": {
              "type": "FunctionExpression",
              "id": null,
              "params": [
                {
                  "type": "Identifier",
                  "name": "_super",
                  "range": [
                    2944,
                    2950
                  ],
                  "loc": {
                    "start": {
                      "line": 68,
                      "column": 40
                    },
                    "end": {
                      "line": 68,
                      "column": 46
                    }
                  }
                }
              ],
              "body": {
                "type": "BlockStatement",
                "body": [
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "CallExpression",
                      "callee": {
                        "type": "Identifier",
                        "name": "__extends",
                        "range": [
                          2958,
                          2967
                        ],
                        "loc": {
                          "start": {
                            "line": 69,
                            "column": 4
                          },
                          "end": {
                            "line": 69,
                            "column": 13
                          }
                        }
                      },
                      "arguments": [
                        {
                          "type": "Identifier",
                          "name": "DebounceTimeSubscriber",
                          "range": [
                            2968,
                            2990
                          ],
                          "loc": {
                            "start": {
                              "line": 69,
                              "column": 14
                            },
                            "end": {
                              "line": 69,
                              "column": 36
                            }
                          }
                        },
                        {
                          "type": "Identifier",
                          "name": "_super",
                          "range": [
                            2992,
                            2998
                          ],
                          "loc": {
                            "start": {
                              "line": 69,
                              "column": 38
                            },
                            "end": {
                              "line": 69,
                              "column": 44
                            }
                          }
                        }
                      ],
                      "range": [
                        2958,
                        2999
                      ],
                      "loc": {
                        "start": {
                          "line": 69,
                          "column": 4
                        },
                        "end": {
                          "line": 69,
                          "column": 45
                        }
                      }
                    },
                    "range": [
                      2958,
                      3000
                    ],
                    "loc": {
                      "start": {
                        "line": 69,
                        "column": 4
                      },
                      "end": {
                        "line": 69,
                        "column": 46
                      }
                    }
                  },
                  {
                    "type": "FunctionDeclaration",
                    "id": {
                      "type": "Identifier",
                      "name": "DebounceTimeSubscriber",
                      "range": [
                        3014,
                        3036
                      ],
                      "loc": {
                        "start": {
                          "line": 70,
                          "column": 13
                        },
                        "end": {
                          "line": 70,
                          "column": 35
                        }
                      }
                    },
                    "params": [
                      {
                        "type": "Identifier",
                        "name": "destination",
                        "range": [
                          3037,
                          3048
                        ],
                        "loc": {
                          "start": {
                            "line": 70,
                            "column": 36
                          },
                          "end": {
                            "line": 70,
                            "column": 47
                          }
                        }
                      },
                      {
                        "type": "Identifier",
                        "name": "dueTime",
                        "range": [
                          3050,
                          3057
                        ],
                        "loc": {
                          "start": {
                            "line": 70,
                            "column": 49
                          },
                          "end": {
                            "line": 70,
                            "column": 56
                          }
                        }
                      },
                      {
                        "type": "Identifier",
                        "name": "scheduler",
                        "range": [
                          3059,
                          3068
                        ],
                        "loc": {
                          "start": {
                            "line": 70,
                            "column": 58
                          },
                          "end": {
                            "line": 70,
                            "column": 67
                          }
                        }
                      }
                    ],
                    "body": {
                      "type": "BlockStatement",
                      "body": [
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "CallExpression",
                            "callee": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "Identifier",
                                "name": "_super",
                                "range": [
                                  3080,
                                  3086
                                ],
                                "loc": {
                                  "start": {
                                    "line": 71,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 71,
                                    "column": 14
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "call",
                                "range": [
                                  3087,
                                  3091
                                ],
                                "loc": {
                                  "start": {
                                    "line": 71,
                                    "column": 15
                                  },
                                  "end": {
                                    "line": 71,
                                    "column": 19
                                  }
                                }
                              },
                              "range": [
                                3080,
                                3091
                              ],
                              "loc": {
                                "start": {
                                  "line": 71,
                                  "column": 8
                                },
                                "end": {
                                  "line": 71,
                                  "column": 19
                                }
                              }
                            },
                            "arguments": [
                              {
                                "type": "ThisExpression",
                                "range": [
                                  3092,
                                  3096
                                ],
                                "loc": {
                                  "start": {
                                    "line": 71,
                                    "column": 20
                                  },
                                  "end": {
                                    "line": 71,
                                    "column": 24
                                  }
                                }
                              },
                              {
                                "type": "Identifier",
                                "name": "destination",
                                "range": [
                                  3098,
                                  3109
                                ],
                                "loc": {
                                  "start": {
                                    "line": 71,
                                    "column": 26
                                  },
                                  "end": {
                                    "line": 71,
                                    "column": 37
                                  }
                                }
                              }
                            ],
                            "range": [
                              3080,
                              3110
                            ],
                            "loc": {
                              "start": {
                                "line": 71,
                                "column": 8
                              },
                              "end": {
                                "line": 71,
                                "column": 38
                              }
                            }
                          },
                          "range": [
                            3080,
                            3111
                          ],
                          "loc": {
                            "start": {
                              "line": 71,
                              "column": 8
                            },
                            "end": {
                              "line": 71,
                              "column": 39
                            }
                          }
                        },
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "AssignmentExpression",
                            "operator": "=",
                            "left": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  3120,
                                  3124
                                ],
                                "loc": {
                                  "start": {
                                    "line": 72,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 72,
                                    "column": 12
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "dueTime",
                                "range": [
                                  3125,
                                  3132
                                ],
                                "loc": {
                                  "start": {
                                    "line": 72,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 72,
                                    "column": 20
                                  }
                                }
                              },
                              "range": [
                                3120,
                                3132
                              ],
                              "loc": {
                                "start": {
                                  "line": 72,
                                  "column": 8
                                },
                                "end": {
                                  "line": 72,
                                  "column": 20
                                }
                              }
                            },
                            "right": {
                              "type": "Identifier",
                              "name": "dueTime",
                              "range": [
                                3135,
                                3142
                              ],
                              "loc": {
                                "start": {
                                  "line": 72,
                                  "column": 23
                                },
                                "end": {
                                  "line": 72,
                                  "column": 30
                                }
                              }
                            },
                            "range": [
                              3120,
                              3142
                            ],
                            "loc": {
                              "start": {
                                "line": 72,
                                "column": 8
                              },
                              "end": {
                                "line": 72,
                                "column": 30
                              }
                            }
                          },
                          "range": [
                            3120,
                            3143
                          ],
                          "loc": {
                            "start": {
                              "line": 72,
                              "column": 8
                            },
                            "end": {
                              "line": 72,
                              "column": 31
                            }
                          }
                        },
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "AssignmentExpression",
                            "operator": "=",
                            "left": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  3152,
                                  3156
                                ],
                                "loc": {
                                  "start": {
                                    "line": 73,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 73,
                                    "column": 12
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "scheduler",
                                "range": [
                                  3157,
                                  3166
                                ],
                                "loc": {
                                  "start": {
                                    "line": 73,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 73,
                                    "column": 22
                                  }
                                }
                              },
                              "range": [
                                3152,
                                3166
                              ],
                              "loc": {
                                "start": {
                                  "line": 73,
                                  "column": 8
                                },
                                "end": {
                                  "line": 73,
                                  "column": 22
                                }
                              }
                            },
                            "right": {
                              "type": "Identifier",
                              "name": "scheduler",
                              "range": [
                                3169,
                                3178
                              ],
                              "loc": {
                                "start": {
                                  "line": 73,
                                  "column": 25
                                },
                                "end": {
                                  "line": 73,
                                  "column": 34
                                }
                              }
                            },
                            "range": [
                              3152,
                              3178
                            ],
                            "loc": {
                              "start": {
                                "line": 73,
                                "column": 8
                              },
                              "end": {
                                "line": 73,
                                "column": 34
                              }
                            }
                          },
                          "range": [
                            3152,
                            3179
                          ],
                          "loc": {
                            "start": {
                              "line": 73,
                              "column": 8
                            },
                            "end": {
                              "line": 73,
                              "column": 35
                            }
                          }
                        },
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "AssignmentExpression",
                            "operator": "=",
                            "left": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  3188,
                                  3192
                                ],
                                "loc": {
                                  "start": {
                                    "line": 74,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 74,
                                    "column": 12
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "debouncedSubscription",
                                "range": [
                                  3193,
                                  3214
                                ],
                                "loc": {
                                  "start": {
                                    "line": 74,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 74,
                                    "column": 34
                                  }
                                }
                              },
                              "range": [
                                3188,
                                3214
                              ],
                              "loc": {
                                "start": {
                                  "line": 74,
                                  "column": 8
                                },
                                "end": {
                                  "line": 74,
                                  "column": 34
                                }
                              }
                            },
                            "right": {
                              "type": "Literal",
                              "value": null,
                              "raw": "null",
                              "range": [
                                3217,
                                3221
                              ],
                              "loc": {
                                "start": {
                                  "line": 74,
                                  "column": 37
                                },
                                "end": {
                                  "line": 74,
                                  "column": 41
                                }
                              }
                            },
                            "range": [
                              3188,
                              3221
                            ],
                            "loc": {
                              "start": {
                                "line": 74,
                                "column": 8
                              },
                              "end": {
                                "line": 74,
                                "column": 41
                              }
                            }
                          },
                          "range": [
                            3188,
                            3222
                          ],
                          "loc": {
                            "start": {
                              "line": 74,
                              "column": 8
                            },
                            "end": {
                              "line": 74,
                              "column": 42
                            }
                          }
                        },
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "AssignmentExpression",
                            "operator": "=",
                            "left": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  3231,
                                  3235
                                ],
                                "loc": {
                                  "start": {
                                    "line": 75,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 75,
                                    "column": 12
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "lastValue",
                                "range": [
                                  3236,
                                  3245
                                ],
                                "loc": {
                                  "start": {
                                    "line": 75,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 75,
                                    "column": 22
                                  }
                                }
                              },
                              "range": [
                                3231,
                                3245
                              ],
                              "loc": {
                                "start": {
                                  "line": 75,
                                  "column": 8
                                },
                                "end": {
                                  "line": 75,
                                  "column": 22
                                }
                              }
                            },
                            "right": {
                              "type": "Literal",
                              "value": null,
                              "raw": "null",
                              "range": [
                                3248,
                                3252
                              ],
                              "loc": {
                                "start": {
                                  "line": 75,
                                  "column": 25
                                },
                                "end": {
                                  "line": 75,
                                  "column": 29
                                }
                              }
                            },
                            "range": [
                              3231,
                              3252
                            ],
                            "loc": {
                              "start": {
                                "line": 75,
                                "column": 8
                              },
                              "end": {
                                "line": 75,
                                "column": 29
                              }
                            }
                          },
                          "range": [
                            3231,
                            3253
                          ],
                          "loc": {
                            "start": {
                              "line": 75,
                              "column": 8
                            },
                            "end": {
                              "line": 75,
                              "column": 30
                            }
                          }
                        },
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "AssignmentExpression",
                            "operator": "=",
                            "left": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  3262,
                                  3266
                                ],
                                "loc": {
                                  "start": {
                                    "line": 76,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 76,
                                    "column": 12
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "hasValue",
                                "range": [
                                  3267,
                                  3275
                                ],
                                "loc": {
                                  "start": {
                                    "line": 76,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 76,
                                    "column": 21
                                  }
                                }
                              },
                              "range": [
                                3262,
                                3275
                              ],
                              "loc": {
                                "start": {
                                  "line": 76,
                                  "column": 8
                                },
                                "end": {
                                  "line": 76,
                                  "column": 21
                                }
                              }
                            },
                            "right": {
                              "type": "Literal",
                              "value": false,
                              "raw": "false",
                              "range": [
                                3278,
                                3283
                              ],
                              "loc": {
                                "start": {
                                  "line": 76,
                                  "column": 24
                                },
                                "end": {
                                  "line": 76,
                                  "column": 29
                                }
                              }
                            },
                            "range": [
                              3262,
                              3283
                            ],
                            "loc": {
                              "start": {
                                "line": 76,
                                "column": 8
                              },
                              "end": {
                                "line": 76,
                                "column": 29
                              }
                            }
                          },
                          "range": [
                            3262,
                            3284
                          ],
                          "loc": {
                            "start": {
                              "line": 76,
                              "column": 8
                            },
                            "end": {
                              "line": 76,
                              "column": 30
                            }
                          }
                        }
                      ],
                      "range": [
                        3070,
                        3290
                      ],
                      "loc": {
                        "start": {
                          "line": 70,
                          "column": 69
                        },
                        "end": {
                          "line": 77,
                          "column": 5
                        }
                      }
                    },
                    "generator": false,
                    "expression": false,
                    "range": [
                      3005,
                      3290
                    ],
                    "loc": {
                      "start": {
                        "line": 70,
                        "column": 4
                      },
                      "end": {
                        "line": 77,
                        "column": 5
                      }
                    }
                  },
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "AssignmentExpression",
                      "operator": "=",
                      "left": {
                        "type": "MemberExpression",
                        "computed": false,
                        "object": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "Identifier",
                            "name": "DebounceTimeSubscriber",
                            "range": [
                              3295,
                              3317
                            ],
                            "loc": {
                              "start": {
                                "line": 78,
                                "column": 4
                              },
                              "end": {
                                "line": 78,
                                "column": 26
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "prototype",
                            "range": [
                              3318,
                              3327
                            ],
                            "loc": {
                              "start": {
                                "line": 78,
                                "column": 27
                              },
                              "end": {
                                "line": 78,
                                "column": 36
                              }
                            }
                          },
                          "range": [
                            3295,
                            3327
                          ],
                          "loc": {
                            "start": {
                              "line": 78,
                              "column": 4
                            },
                            "end": {
                              "line": 78,
                              "column": 36
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "_next",
                          "range": [
                            3328,
                            3333
                          ],
                          "loc": {
                            "start": {
                              "line": 78,
                              "column": 37
                            },
                            "end": {
                              "line": 78,
                              "column": 42
                            }
                          }
                        },
                        "range": [
                          3295,
                          3333
                        ],
                        "loc": {
                          "start": {
                            "line": 78,
                            "column": 4
                          },
                          "end": {
                            "line": 78,
                            "column": 42
                          }
                        }
                      },
                      "right": {
                        "type": "FunctionExpression",
                        "id": null,
                        "params": [
                          {
                            "type": "Identifier",
                            "name": "value",
                            "range": [
                              3346,
                              3351
                            ],
                            "loc": {
                              "start": {
                                "line": 78,
                                "column": 55
                              },
                              "end": {
                                "line": 78,
                                "column": 60
                              }
                            }
                          }
                        ],
                        "body": {
                          "type": "BlockStatement",
                          "body": [
                            {
                              "type": "ExpressionStatement",
                              "expression": {
                                "type": "CallExpression",
                                "callee": {
                                  "type": "MemberExpression",
                                  "computed": false,
                                  "object": {
                                    "type": "ThisExpression",
                                    "range": [
                                      3363,
                                      3367
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 79,
                                        "column": 8
                                      },
                                      "end": {
                                        "line": 79,
                                        "column": 12
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "clearDebounce",
                                    "range": [
                                      3368,
                                      3381
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 79,
                                        "column": 13
                                      },
                                      "end": {
                                        "line": 79,
                                        "column": 26
                                      }
                                    }
                                  },
                                  "range": [
                                    3363,
                                    3381
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 79,
                                      "column": 8
                                    },
                                    "end": {
                                      "line": 79,
                                      "column": 26
                                    }
                                  }
                                },
                                "arguments": [],
                                "range": [
                                  3363,
                                  3383
                                ],
                                "loc": {
                                  "start": {
                                    "line": 79,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 79,
                                    "column": 28
                                  }
                                }
                              },
                              "range": [
                                3363,
                                3384
                              ],
                              "loc": {
                                "start": {
                                  "line": 79,
                                  "column": 8
                                },
                                "end": {
                                  "line": 79,
                                  "column": 29
                                }
                              }
                            },
                            {
                              "type": "ExpressionStatement",
                              "expression": {
                                "type": "AssignmentExpression",
                                "operator": "=",
                                "left": {
                                  "type": "MemberExpression",
                                  "computed": false,
                                  "object": {
                                    "type": "ThisExpression",
                                    "range": [
                                      3393,
                                      3397
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 80,
                                        "column": 8
                                      },
                                      "end": {
                                        "line": 80,
                                        "column": 12
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "lastValue",
                                    "range": [
                                      3398,
                                      3407
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 80,
                                        "column": 13
                                      },
                                      "end": {
                                        "line": 80,
                                        "column": 22
                                      }
                                    }
                                  },
                                  "range": [
                                    3393,
                                    3407
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 80,
                                      "column": 8
                                    },
                                    "end": {
                                      "line": 80,
                                      "column": 22
                                    }
                                  }
                                },
                                "right": {
                                  "type": "Identifier",
                                  "name": "value",
                                  "range": [
                                    3410,
                                    3415
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 80,
                                      "column": 25
                                    },
                                    "end": {
                                      "line": 80,
                                      "column": 30
                                    }
                                  }
                                },
                                "range": [
                                  3393,
                                  3415
                                ],
                                "loc": {
                                  "start": {
                                    "line": 80,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 80,
                                    "column": 30
                                  }
                                }
                              },
                              "range": [
                                3393,
                                3416
                              ],
                              "loc": {
                                "start": {
                                  "line": 80,
                                  "column": 8
                                },
                                "end": {
                                  "line": 80,
                                  "column": 31
                                }
                              }
                            },
                            {
                              "type": "ExpressionStatement",
                              "expression": {
                                "type": "AssignmentExpression",
                                "operator": "=",
                                "left": {
                                  "type": "MemberExpression",
                                  "computed": false,
                                  "object": {
                                    "type": "ThisExpression",
                                    "range": [
                                      3425,
                                      3429
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 81,
                                        "column": 8
                                      },
                                      "end": {
                                        "line": 81,
                                        "column": 12
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "hasValue",
                                    "range": [
                                      3430,
                                      3438
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 81,
                                        "column": 13
                                      },
                                      "end": {
                                        "line": 81,
                                        "column": 21
                                      }
                                    }
                                  },
                                  "range": [
                                    3425,
                                    3438
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 81,
                                      "column": 8
                                    },
                                    "end": {
                                      "line": 81,
                                      "column": 21
                                    }
                                  }
                                },
                                "right": {
                                  "type": "Literal",
                                  "value": true,
                                  "raw": "true",
                                  "range": [
                                    3441,
                                    3445
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 81,
                                      "column": 24
                                    },
                                    "end": {
                                      "line": 81,
                                      "column": 28
                                    }
                                  }
                                },
                                "range": [
                                  3425,
                                  3445
                                ],
                                "loc": {
                                  "start": {
                                    "line": 81,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 81,
                                    "column": 28
                                  }
                                }
                              },
                              "range": [
                                3425,
                                3446
                              ],
                              "loc": {
                                "start": {
                                  "line": 81,
                                  "column": 8
                                },
                                "end": {
                                  "line": 81,
                                  "column": 29
                                }
                              }
                            },
                            {
                              "type": "ExpressionStatement",
                              "expression": {
                                "type": "CallExpression",
                                "callee": {
                                  "type": "MemberExpression",
                                  "computed": false,
                                  "object": {
                                    "type": "ThisExpression",
                                    "range": [
                                      3455,
                                      3459
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 82,
                                        "column": 8
                                      },
                                      "end": {
                                        "line": 82,
                                        "column": 12
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "add",
                                    "range": [
                                      3460,
                                      3463
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 82,
                                        "column": 13
                                      },
                                      "end": {
                                        "line": 82,
                                        "column": 16
                                      }
                                    }
                                  },
                                  "range": [
                                    3455,
                                    3463
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 82,
                                      "column": 8
                                    },
                                    "end": {
                                      "line": 82,
                                      "column": 16
                                    }
                                  }
                                },
                                "arguments": [
                                  {
                                    "type": "AssignmentExpression",
                                    "operator": "=",
                                    "left": {
                                      "type": "MemberExpression",
                                      "computed": false,
                                      "object": {
                                        "type": "ThisExpression",
                                        "range": [
                                          3464,
                                          3468
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 82,
                                            "column": 17
                                          },
                                          "end": {
                                            "line": 82,
                                            "column": 21
                                          }
                                        }
                                      },
                                      "property": {
                                        "type": "Identifier",
                                        "name": "debouncedSubscription",
                                        "range": [
                                          3469,
                                          3490
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 82,
                                            "column": 22
                                          },
                                          "end": {
                                            "line": 82,
                                            "column": 43
                                          }
                                        }
                                      },
                                      "range": [
                                        3464,
                                        3490
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 82,
                                          "column": 17
                                        },
                                        "end": {
                                          "line": 82,
                                          "column": 43
                                        }
                                      }
                                    },
                                    "right": {
                                      "type": "CallExpression",
                                      "callee": {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "MemberExpression",
                                          "computed": false,
                                          "object": {
                                            "type": "ThisExpression",
                                            "range": [
                                              3493,
                                              3497
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 82,
                                                "column": 46
                                              },
                                              "end": {
                                                "line": 82,
                                                "column": 50
                                              }
                                            }
                                          },
                                          "property": {
                                            "type": "Identifier",
                                            "name": "scheduler",
                                            "range": [
                                              3498,
                                              3507
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 82,
                                                "column": 51
                                              },
                                              "end": {
                                                "line": 82,
                                                "column": 60
                                              }
                                            }
                                          },
                                          "range": [
                                            3493,
                                            3507
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 82,
                                              "column": 46
                                            },
                                            "end": {
                                              "line": 82,
                                              "column": 60
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "schedule",
                                          "range": [
                                            3508,
                                            3516
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 82,
                                              "column": 61
                                            },
                                            "end": {
                                              "line": 82,
                                              "column": 69
                                            }
                                          }
                                        },
                                        "range": [
                                          3493,
                                          3516
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 82,
                                            "column": 46
                                          },
                                          "end": {
                                            "line": 82,
                                            "column": 69
                                          }
                                        }
                                      },
                                      "arguments": [
                                        {
                                          "type": "Identifier",
                                          "name": "dispatchNext",
                                          "range": [
                                            3517,
                                            3529
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 82,
                                              "column": 70
                                            },
                                            "end": {
                                              "line": 82,
                                              "column": 82
                                            }
                                          }
                                        },
                                        {
                                          "type": "MemberExpression",
                                          "computed": false,
                                          "object": {
                                            "type": "ThisExpression",
                                            "range": [
                                              3531,
                                              3535
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 82,
                                                "column": 84
                                              },
                                              "end": {
                                                "line": 82,
                                                "column": 88
                                              }
                                            }
                                          },
                                          "property": {
                                            "type": "Identifier",
                                            "name": "dueTime",
                                            "range": [
                                              3536,
                                              3543
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 82,
                                                "column": 89
                                              },
                                              "end": {
                                                "line": 82,
                                                "column": 96
                                              }
                                            }
                                          },
                                          "range": [
                                            3531,
                                            3543
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 82,
                                              "column": 84
                                            },
                                            "end": {
                                              "line": 82,
                                              "column": 96
                                            }
                                          }
                                        },
                                        {
                                          "type": "ThisExpression",
                                          "range": [
                                            3545,
                                            3549
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 82,
                                              "column": 98
                                            },
                                            "end": {
                                              "line": 82,
                                              "column": 102
                                            }
                                          }
                                        }
                                      ],
                                      "range": [
                                        3493,
                                        3550
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 82,
                                          "column": 46
                                        },
                                        "end": {
                                          "line": 82,
                                          "column": 103
                                        }
                                      }
                                    },
                                    "range": [
                                      3464,
                                      3550
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 82,
                                        "column": 17
                                      },
                                      "end": {
                                        "line": 82,
                                        "column": 103
                                      }
                                    }
                                  }
                                ],
                                "range": [
                                  3455,
                                  3551
                                ],
                                "loc": {
                                  "start": {
                                    "line": 82,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 82,
                                    "column": 104
                                  }
                                }
                              },
                              "range": [
                                3455,
                                3552
                              ],
                              "loc": {
                                "start": {
                                  "line": 82,
                                  "column": 8
                                },
                                "end": {
                                  "line": 82,
                                  "column": 105
                                }
                              }
                            }
                          ],
                          "range": [
                            3353,
                            3558
                          ],
                          "loc": {
                            "start": {
                              "line": 78,
                              "column": 62
                            },
                            "end": {
                              "line": 83,
                              "column": 5
                            }
                          }
                        },
                        "generator": false,
                        "expression": false,
                        "range": [
                          3336,
                          3558
                        ],
                        "loc": {
                          "start": {
                            "line": 78,
                            "column": 45
                          },
                          "end": {
                            "line": 83,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        3295,
                        3558
                      ],
                      "loc": {
                        "start": {
                          "line": 78,
                          "column": 4
                        },
                        "end": {
                          "line": 83,
                          "column": 5
                        }
                      }
                    },
                    "range": [
                      3295,
                      3559
                    ],
                    "loc": {
                      "start": {
                        "line": 78,
                        "column": 4
                      },
                      "end": {
                        "line": 83,
                        "column": 6
                      }
                    }
                  },
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "AssignmentExpression",
                      "operator": "=",
                      "left": {
                        "type": "MemberExpression",
                        "computed": false,
                        "object": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "Identifier",
                            "name": "DebounceTimeSubscriber",
                            "range": [
                              3564,
                              3586
                            ],
                            "loc": {
                              "start": {
                                "line": 84,
                                "column": 4
                              },
                              "end": {
                                "line": 84,
                                "column": 26
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "prototype",
                            "range": [
                              3587,
                              3596
                            ],
                            "loc": {
                              "start": {
                                "line": 84,
                                "column": 27
                              },
                              "end": {
                                "line": 84,
                                "column": 36
                              }
                            }
                          },
                          "range": [
                            3564,
                            3596
                          ],
                          "loc": {
                            "start": {
                              "line": 84,
                              "column": 4
                            },
                            "end": {
                              "line": 84,
                              "column": 36
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "_complete",
                          "range": [
                            3597,
                            3606
                          ],
                          "loc": {
                            "start": {
                              "line": 84,
                              "column": 37
                            },
                            "end": {
                              "line": 84,
                              "column": 46
                            }
                          }
                        },
                        "range": [
                          3564,
                          3606
                        ],
                        "loc": {
                          "start": {
                            "line": 84,
                            "column": 4
                          },
                          "end": {
                            "line": 84,
                            "column": 46
                          }
                        }
                      },
                      "right": {
                        "type": "FunctionExpression",
                        "id": null,
                        "params": [],
                        "body": {
                          "type": "BlockStatement",
                          "body": [
                            {
                              "type": "ExpressionStatement",
                              "expression": {
                                "type": "CallExpression",
                                "callee": {
                                  "type": "MemberExpression",
                                  "computed": false,
                                  "object": {
                                    "type": "ThisExpression",
                                    "range": [
                                      3631,
                                      3635
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 85,
                                        "column": 8
                                      },
                                      "end": {
                                        "line": 85,
                                        "column": 12
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "debouncedNext",
                                    "range": [
                                      3636,
                                      3649
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 85,
                                        "column": 13
                                      },
                                      "end": {
                                        "line": 85,
                                        "column": 26
                                      }
                                    }
                                  },
                                  "range": [
                                    3631,
                                    3649
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 85,
                                      "column": 8
                                    },
                                    "end": {
                                      "line": 85,
                                      "column": 26
                                    }
                                  }
                                },
                                "arguments": [],
                                "range": [
                                  3631,
                                  3651
                                ],
                                "loc": {
                                  "start": {
                                    "line": 85,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 85,
                                    "column": 28
                                  }
                                }
                              },
                              "range": [
                                3631,
                                3652
                              ],
                              "loc": {
                                "start": {
                                  "line": 85,
                                  "column": 8
                                },
                                "end": {
                                  "line": 85,
                                  "column": 29
                                }
                              }
                            },
                            {
                              "type": "ExpressionStatement",
                              "expression": {
                                "type": "CallExpression",
                                "callee": {
                                  "type": "MemberExpression",
                                  "computed": false,
                                  "object": {
                                    "type": "MemberExpression",
                                    "computed": false,
                                    "object": {
                                      "type": "ThisExpression",
                                      "range": [
                                        3661,
                                        3665
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 86,
                                          "column": 8
                                        },
                                        "end": {
                                          "line": 86,
                                          "column": 12
                                        }
                                      }
                                    },
                                    "property": {
                                      "type": "Identifier",
                                      "name": "destination",
                                      "range": [
                                        3666,
                                        3677
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 86,
                                          "column": 13
                                        },
                                        "end": {
                                          "line": 86,
                                          "column": 24
                                        }
                                      }
                                    },
                                    "range": [
                                      3661,
                                      3677
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 86,
                                        "column": 8
                                      },
                                      "end": {
                                        "line": 86,
                                        "column": 24
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "complete",
                                    "range": [
                                      3678,
                                      3686
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 86,
                                        "column": 25
                                      },
                                      "end": {
                                        "line": 86,
                                        "column": 33
                                      }
                                    }
                                  },
                                  "range": [
                                    3661,
                                    3686
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 86,
                                      "column": 8
                                    },
                                    "end": {
                                      "line": 86,
                                      "column": 33
                                    }
                                  }
                                },
                                "arguments": [],
                                "range": [
                                  3661,
                                  3688
                                ],
                                "loc": {
                                  "start": {
                                    "line": 86,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 86,
                                    "column": 35
                                  }
                                }
                              },
                              "range": [
                                3661,
                                3689
                              ],
                              "loc": {
                                "start": {
                                  "line": 86,
                                  "column": 8
                                },
                                "end": {
                                  "line": 86,
                                  "column": 36
                                }
                              }
                            }
                          ],
                          "range": [
                            3621,
                            3695
                          ],
                          "loc": {
                            "start": {
                              "line": 84,
                              "column": 61
                            },
                            "end": {
                              "line": 87,
                              "column": 5
                            }
                          }
                        },
                        "generator": false,
                        "expression": false,
                        "range": [
                          3609,
                          3695
                        ],
                        "loc": {
                          "start": {
                            "line": 84,
                            "column": 49
                          },
                          "end": {
                            "line": 87,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        3564,
                        3695
                      ],
                      "loc": {
                        "start": {
                          "line": 84,
                          "column": 4
                        },
                        "end": {
                          "line": 87,
                          "column": 5
                        }
                      }
                    },
                    "range": [
                      3564,
                      3696
                    ],
                    "loc": {
                      "start": {
                        "line": 84,
                        "column": 4
                      },
                      "end": {
                        "line": 87,
                        "column": 6
                      }
                    }
                  },
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "AssignmentExpression",
                      "operator": "=",
                      "left": {
                        "type": "MemberExpression",
                        "computed": false,
                        "object": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "Identifier",
                            "name": "DebounceTimeSubscriber",
                            "range": [
                              3701,
                              3723
                            ],
                            "loc": {
                              "start": {
                                "line": 88,
                                "column": 4
                              },
                              "end": {
                                "line": 88,
                                "column": 26
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "prototype",
                            "range": [
                              3724,
                              3733
                            ],
                            "loc": {
                              "start": {
                                "line": 88,
                                "column": 27
                              },
                              "end": {
                                "line": 88,
                                "column": 36
                              }
                            }
                          },
                          "range": [
                            3701,
                            3733
                          ],
                          "loc": {
                            "start": {
                              "line": 88,
                              "column": 4
                            },
                            "end": {
                              "line": 88,
                              "column": 36
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "debouncedNext",
                          "range": [
                            3734,
                            3747
                          ],
                          "loc": {
                            "start": {
                              "line": 88,
                              "column": 37
                            },
                            "end": {
                              "line": 88,
                              "column": 50
                            }
                          }
                        },
                        "range": [
                          3701,
                          3747
                        ],
                        "loc": {
                          "start": {
                            "line": 88,
                            "column": 4
                          },
                          "end": {
                            "line": 88,
                            "column": 50
                          }
                        }
                      },
                      "right": {
                        "type": "FunctionExpression",
                        "id": null,
                        "params": [],
                        "body": {
                          "type": "BlockStatement",
                          "body": [
                            {
                              "type": "ExpressionStatement",
                              "expression": {
                                "type": "CallExpression",
                                "callee": {
                                  "type": "MemberExpression",
                                  "computed": false,
                                  "object": {
                                    "type": "ThisExpression",
                                    "range": [
                                      3772,
                                      3776
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 89,
                                        "column": 8
                                      },
                                      "end": {
                                        "line": 89,
                                        "column": 12
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "clearDebounce",
                                    "range": [
                                      3777,
                                      3790
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 89,
                                        "column": 13
                                      },
                                      "end": {
                                        "line": 89,
                                        "column": 26
                                      }
                                    }
                                  },
                                  "range": [
                                    3772,
                                    3790
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 89,
                                      "column": 8
                                    },
                                    "end": {
                                      "line": 89,
                                      "column": 26
                                    }
                                  }
                                },
                                "arguments": [],
                                "range": [
                                  3772,
                                  3792
                                ],
                                "loc": {
                                  "start": {
                                    "line": 89,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 89,
                                    "column": 28
                                  }
                                }
                              },
                              "range": [
                                3772,
                                3793
                              ],
                              "loc": {
                                "start": {
                                  "line": 89,
                                  "column": 8
                                },
                                "end": {
                                  "line": 89,
                                  "column": 29
                                }
                              }
                            },
                            {
                              "type": "IfStatement",
                              "test": {
                                "type": "MemberExpression",
                                "computed": false,
                                "object": {
                                  "type": "ThisExpression",
                                  "range": [
                                    3806,
                                    3810
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 90,
                                      "column": 12
                                    },
                                    "end": {
                                      "line": 90,
                                      "column": 16
                                    }
                                  }
                                },
                                "property": {
                                  "type": "Identifier",
                                  "name": "hasValue",
                                  "range": [
                                    3811,
                                    3819
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 90,
                                      "column": 17
                                    },
                                    "end": {
                                      "line": 90,
                                      "column": 25
                                    }
                                  }
                                },
                                "range": [
                                  3806,
                                  3819
                                ],
                                "loc": {
                                  "start": {
                                    "line": 90,
                                    "column": 12
                                  },
                                  "end": {
                                    "line": 90,
                                    "column": 25
                                  }
                                }
                              },
                              "consequent": {
                                "type": "BlockStatement",
                                "body": [
                                  {
                                    "type": "ExpressionStatement",
                                    "expression": {
                                      "type": "CallExpression",
                                      "callee": {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "MemberExpression",
                                          "computed": false,
                                          "object": {
                                            "type": "ThisExpression",
                                            "range": [
                                              3835,
                                              3839
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 91,
                                                "column": 12
                                              },
                                              "end": {
                                                "line": 91,
                                                "column": 16
                                              }
                                            }
                                          },
                                          "property": {
                                            "type": "Identifier",
                                            "name": "destination",
                                            "range": [
                                              3840,
                                              3851
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 91,
                                                "column": 17
                                              },
                                              "end": {
                                                "line": 91,
                                                "column": 28
                                              }
                                            }
                                          },
                                          "range": [
                                            3835,
                                            3851
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 91,
                                              "column": 12
                                            },
                                            "end": {
                                              "line": 91,
                                              "column": 28
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "next",
                                          "range": [
                                            3852,
                                            3856
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 91,
                                              "column": 29
                                            },
                                            "end": {
                                              "line": 91,
                                              "column": 33
                                            }
                                          }
                                        },
                                        "range": [
                                          3835,
                                          3856
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 91,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 91,
                                            "column": 33
                                          }
                                        }
                                      },
                                      "arguments": [
                                        {
                                          "type": "MemberExpression",
                                          "computed": false,
                                          "object": {
                                            "type": "ThisExpression",
                                            "range": [
                                              3857,
                                              3861
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 91,
                                                "column": 34
                                              },
                                              "end": {
                                                "line": 91,
                                                "column": 38
                                              }
                                            }
                                          },
                                          "property": {
                                            "type": "Identifier",
                                            "name": "lastValue",
                                            "range": [
                                              3862,
                                              3871
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 91,
                                                "column": 39
                                              },
                                              "end": {
                                                "line": 91,
                                                "column": 48
                                              }
                                            }
                                          },
                                          "range": [
                                            3857,
                                            3871
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 91,
                                              "column": 34
                                            },
                                            "end": {
                                              "line": 91,
                                              "column": 48
                                            }
                                          }
                                        }
                                      ],
                                      "range": [
                                        3835,
                                        3872
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 91,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 91,
                                          "column": 49
                                        }
                                      }
                                    },
                                    "range": [
                                      3835,
                                      3873
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 91,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 91,
                                        "column": 50
                                      }
                                    }
                                  },
                                  {
                                    "type": "ExpressionStatement",
                                    "expression": {
                                      "type": "AssignmentExpression",
                                      "operator": "=",
                                      "left": {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "ThisExpression",
                                          "range": [
                                            3886,
                                            3890
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 92,
                                              "column": 12
                                            },
                                            "end": {
                                              "line": 92,
                                              "column": 16
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "lastValue",
                                          "range": [
                                            3891,
                                            3900
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 92,
                                              "column": 17
                                            },
                                            "end": {
                                              "line": 92,
                                              "column": 26
                                            }
                                          }
                                        },
                                        "range": [
                                          3886,
                                          3900
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 92,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 92,
                                            "column": 26
                                          }
                                        }
                                      },
                                      "right": {
                                        "type": "Literal",
                                        "value": null,
                                        "raw": "null",
                                        "range": [
                                          3903,
                                          3907
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 92,
                                            "column": 29
                                          },
                                          "end": {
                                            "line": 92,
                                            "column": 33
                                          }
                                        }
                                      },
                                      "range": [
                                        3886,
                                        3907
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 92,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 92,
                                          "column": 33
                                        }
                                      }
                                    },
                                    "range": [
                                      3886,
                                      3908
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 92,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 92,
                                        "column": 34
                                      }
                                    }
                                  },
                                  {
                                    "type": "ExpressionStatement",
                                    "expression": {
                                      "type": "AssignmentExpression",
                                      "operator": "=",
                                      "left": {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "ThisExpression",
                                          "range": [
                                            3921,
                                            3925
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 93,
                                              "column": 12
                                            },
                                            "end": {
                                              "line": 93,
                                              "column": 16
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "hasValue",
                                          "range": [
                                            3926,
                                            3934
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 93,
                                              "column": 17
                                            },
                                            "end": {
                                              "line": 93,
                                              "column": 25
                                            }
                                          }
                                        },
                                        "range": [
                                          3921,
                                          3934
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 93,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 93,
                                            "column": 25
                                          }
                                        }
                                      },
                                      "right": {
                                        "type": "Literal",
                                        "value": false,
                                        "raw": "false",
                                        "range": [
                                          3937,
                                          3942
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 93,
                                            "column": 28
                                          },
                                          "end": {
                                            "line": 93,
                                            "column": 33
                                          }
                                        }
                                      },
                                      "range": [
                                        3921,
                                        3942
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 93,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 93,
                                          "column": 33
                                        }
                                      }
                                    },
                                    "range": [
                                      3921,
                                      3943
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 93,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 93,
                                        "column": 34
                                      }
                                    }
                                  }
                                ],
                                "range": [
                                  3821,
                                  3953
                                ],
                                "loc": {
                                  "start": {
                                    "line": 90,
                                    "column": 27
                                  },
                                  "end": {
                                    "line": 94,
                                    "column": 9
                                  }
                                }
                              },
                              "alternate": null,
                              "range": [
                                3802,
                                3953
                              ],
                              "loc": {
                                "start": {
                                  "line": 90,
                                  "column": 8
                                },
                                "end": {
                                  "line": 94,
                                  "column": 9
                                }
                              }
                            }
                          ],
                          "range": [
                            3762,
                            3959
                          ],
                          "loc": {
                            "start": {
                              "line": 88,
                              "column": 65
                            },
                            "end": {
                              "line": 95,
                              "column": 5
                            }
                          }
                        },
                        "generator": false,
                        "expression": false,
                        "range": [
                          3750,
                          3959
                        ],
                        "loc": {
                          "start": {
                            "line": 88,
                            "column": 53
                          },
                          "end": {
                            "line": 95,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        3701,
                        3959
                      ],
                      "loc": {
                        "start": {
                          "line": 88,
                          "column": 4
                        },
                        "end": {
                          "line": 95,
                          "column": 5
                        }
                      }
                    },
                    "range": [
                      3701,
                      3960
                    ],
                    "loc": {
                      "start": {
                        "line": 88,
                        "column": 4
                      },
                      "end": {
                        "line": 95,
                        "column": 6
                      }
                    }
                  },
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "AssignmentExpression",
                      "operator": "=",
                      "left": {
                        "type": "MemberExpression",
                        "computed": false,
                        "object": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "Identifier",
                            "name": "DebounceTimeSubscriber",
                            "range": [
                              3965,
                              3987
                            ],
                            "loc": {
                              "start": {
                                "line": 96,
                                "column": 4
                              },
                              "end": {
                                "line": 96,
                                "column": 26
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "prototype",
                            "range": [
                              3988,
                              3997
                            ],
                            "loc": {
                              "start": {
                                "line": 96,
                                "column": 27
                              },
                              "end": {
                                "line": 96,
                                "column": 36
                              }
                            }
                          },
                          "range": [
                            3965,
                            3997
                          ],
                          "loc": {
                            "start": {
                              "line": 96,
                              "column": 4
                            },
                            "end": {
                              "line": 96,
                              "column": 36
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "clearDebounce",
                          "range": [
                            3998,
                            4011
                          ],
                          "loc": {
                            "start": {
                              "line": 96,
                              "column": 37
                            },
                            "end": {
                              "line": 96,
                              "column": 50
                            }
                          }
                        },
                        "range": [
                          3965,
                          4011
                        ],
                        "loc": {
                          "start": {
                            "line": 96,
                            "column": 4
                          },
                          "end": {
                            "line": 96,
                            "column": 50
                          }
                        }
                      },
                      "right": {
                        "type": "FunctionExpression",
                        "id": null,
                        "params": [],
                        "body": {
                          "type": "BlockStatement",
                          "body": [
                            {
                              "type": "VariableDeclaration",
                              "declarations": [
                                {
                                  "type": "VariableDeclarator",
                                  "id": {
                                    "type": "Identifier",
                                    "name": "debouncedSubscription",
                                    "range": [
                                      4040,
                                      4061
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 97,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 97,
                                        "column": 33
                                      }
                                    }
                                  },
                                  "init": {
                                    "type": "MemberExpression",
                                    "computed": false,
                                    "object": {
                                      "type": "ThisExpression",
                                      "range": [
                                        4064,
                                        4068
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 97,
                                          "column": 36
                                        },
                                        "end": {
                                          "line": 97,
                                          "column": 40
                                        }
                                      }
                                    },
                                    "property": {
                                      "type": "Identifier",
                                      "name": "debouncedSubscription",
                                      "range": [
                                        4069,
                                        4090
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 97,
                                          "column": 41
                                        },
                                        "end": {
                                          "line": 97,
                                          "column": 62
                                        }
                                      }
                                    },
                                    "range": [
                                      4064,
                                      4090
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 97,
                                        "column": 36
                                      },
                                      "end": {
                                        "line": 97,
                                        "column": 62
                                      }
                                    }
                                  },
                                  "range": [
                                    4040,
                                    4090
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 97,
                                      "column": 12
                                    },
                                    "end": {
                                      "line": 97,
                                      "column": 62
                                    }
                                  }
                                }
                              ],
                              "kind": "var",
                              "range": [
                                4036,
                                4091
                              ],
                              "loc": {
                                "start": {
                                  "line": 97,
                                  "column": 8
                                },
                                "end": {
                                  "line": 97,
                                  "column": 63
                                }
                              }
                            },
                            {
                              "type": "IfStatement",
                              "test": {
                                "type": "BinaryExpression",
                                "operator": "!==",
                                "left": {
                                  "type": "Identifier",
                                  "name": "debouncedSubscription",
                                  "range": [
                                    4104,
                                    4125
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 98,
                                      "column": 12
                                    },
                                    "end": {
                                      "line": 98,
                                      "column": 33
                                    }
                                  }
                                },
                                "right": {
                                  "type": "Literal",
                                  "value": null,
                                  "raw": "null",
                                  "range": [
                                    4130,
                                    4134
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 98,
                                      "column": 38
                                    },
                                    "end": {
                                      "line": 98,
                                      "column": 42
                                    }
                                  }
                                },
                                "range": [
                                  4104,
                                  4134
                                ],
                                "loc": {
                                  "start": {
                                    "line": 98,
                                    "column": 12
                                  },
                                  "end": {
                                    "line": 98,
                                    "column": 42
                                  }
                                }
                              },
                              "consequent": {
                                "type": "BlockStatement",
                                "body": [
                                  {
                                    "type": "ExpressionStatement",
                                    "expression": {
                                      "type": "CallExpression",
                                      "callee": {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "ThisExpression",
                                          "range": [
                                            4150,
                                            4154
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 99,
                                              "column": 12
                                            },
                                            "end": {
                                              "line": 99,
                                              "column": 16
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "remove",
                                          "range": [
                                            4155,
                                            4161
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 99,
                                              "column": 17
                                            },
                                            "end": {
                                              "line": 99,
                                              "column": 23
                                            }
                                          }
                                        },
                                        "range": [
                                          4150,
                                          4161
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 99,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 99,
                                            "column": 23
                                          }
                                        }
                                      },
                                      "arguments": [
                                        {
                                          "type": "Identifier",
                                          "name": "debouncedSubscription",
                                          "range": [
                                            4162,
                                            4183
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 99,
                                              "column": 24
                                            },
                                            "end": {
                                              "line": 99,
                                              "column": 45
                                            }
                                          }
                                        }
                                      ],
                                      "range": [
                                        4150,
                                        4184
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 99,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 99,
                                          "column": 46
                                        }
                                      }
                                    },
                                    "range": [
                                      4150,
                                      4185
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 99,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 99,
                                        "column": 47
                                      }
                                    }
                                  },
                                  {
                                    "type": "ExpressionStatement",
                                    "expression": {
                                      "type": "CallExpression",
                                      "callee": {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "Identifier",
                                          "name": "debouncedSubscription",
                                          "range": [
                                            4198,
                                            4219
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 100,
                                              "column": 12
                                            },
                                            "end": {
                                              "line": 100,
                                              "column": 33
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "unsubscribe",
                                          "range": [
                                            4220,
                                            4231
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 100,
                                              "column": 34
                                            },
                                            "end": {
                                              "line": 100,
                                              "column": 45
                                            }
                                          }
                                        },
                                        "range": [
                                          4198,
                                          4231
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 100,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 100,
                                            "column": 45
                                          }
                                        }
                                      },
                                      "arguments": [],
                                      "range": [
                                        4198,
                                        4233
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 100,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 100,
                                          "column": 47
                                        }
                                      }
                                    },
                                    "range": [
                                      4198,
                                      4234
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 100,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 100,
                                        "column": 48
                                      }
                                    }
                                  },
                                  {
                                    "type": "ExpressionStatement",
                                    "expression": {
                                      "type": "AssignmentExpression",
                                      "operator": "=",
                                      "left": {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "ThisExpression",
                                          "range": [
                                            4247,
                                            4251
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 101,
                                              "column": 12
                                            },
                                            "end": {
                                              "line": 101,
                                              "column": 16
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "debouncedSubscription",
                                          "range": [
                                            4252,
                                            4273
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 101,
                                              "column": 17
                                            },
                                            "end": {
                                              "line": 101,
                                              "column": 38
                                            }
                                          }
                                        },
                                        "range": [
                                          4247,
                                          4273
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 101,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 101,
                                            "column": 38
                                          }
                                        }
                                      },
                                      "right": {
                                        "type": "Literal",
                                        "value": null,
                                        "raw": "null",
                                        "range": [
                                          4276,
                                          4280
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 101,
                                            "column": 41
                                          },
                                          "end": {
                                            "line": 101,
                                            "column": 45
                                          }
                                        }
                                      },
                                      "range": [
                                        4247,
                                        4280
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 101,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 101,
                                          "column": 45
                                        }
                                      }
                                    },
                                    "range": [
                                      4247,
                                      4281
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 101,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 101,
                                        "column": 46
                                      }
                                    }
                                  }
                                ],
                                "range": [
                                  4136,
                                  4291
                                ],
                                "loc": {
                                  "start": {
                                    "line": 98,
                                    "column": 44
                                  },
                                  "end": {
                                    "line": 102,
                                    "column": 9
                                  }
                                }
                              },
                              "alternate": null,
                              "range": [
                                4100,
                                4291
                              ],
                              "loc": {
                                "start": {
                                  "line": 98,
                                  "column": 8
                                },
                                "end": {
                                  "line": 102,
                                  "column": 9
                                }
                              }
                            }
                          ],
                          "range": [
                            4026,
                            4297
                          ],
                          "loc": {
                            "start": {
                              "line": 96,
                              "column": 65
                            },
                            "end": {
                              "line": 103,
                              "column": 5
                            }
                          }
                        },
                        "generator": false,
                        "expression": false,
                        "range": [
                          4014,
                          4297
                        ],
                        "loc": {
                          "start": {
                            "line": 96,
                            "column": 53
                          },
                          "end": {
                            "line": 103,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        3965,
                        4297
                      ],
                      "loc": {
                        "start": {
                          "line": 96,
                          "column": 4
                        },
                        "end": {
                          "line": 103,
                          "column": 5
                        }
                      }
                    },
                    "range": [
                      3965,
                      4298
                    ],
                    "loc": {
                      "start": {
                        "line": 96,
                        "column": 4
                      },
                      "end": {
                        "line": 103,
                        "column": 6
                      }
                    }
                  },
                  {
                    "type": "ReturnStatement",
                    "argument": {
                      "type": "Identifier",
                      "name": "DebounceTimeSubscriber",
                      "range": [
                        4310,
                        4332
                      ],
                      "loc": {
                        "start": {
                          "line": 104,
                          "column": 11
                        },
                        "end": {
                          "line": 104,
                          "column": 33
                        }
                      }
                    },
                    "range": [
                      4303,
                      4333
                    ],
                    "loc": {
                      "start": {
                        "line": 104,
                        "column": 4
                      },
                      "end": {
                        "line": 104,
                        "column": 34
                      }
                    }
                  }
                ],
                "range": [
                  2952,
                  4335
                ],
                "loc": {
                  "start": {
                    "line": 68,
                    "column": 48
                  },
                  "end": {
                    "line": 105,
                    "column": 1
                  }
                }
              },
              "generator": false,
              "expression": false,
              "range": [
                2934,
                4335
              ],
              "loc": {
                "start": {
                  "line": 68,
                  "column": 30
                },
                "end": {
                  "line": 105,
                  "column": 1
                }
              }
            },
            "arguments": [
              {
                "type": "Identifier",
                "name": "Subscriber",
                "range": [
                  4336,
                  4346
                ],
                "loc": {
                  "start": {
                    "line": 105,
                    "column": 2
                  },
                  "end": {
                    "line": 105,
                    "column": 12
                  }
                }
              }
            ],
            "range": [
              2934,
              4347
            ],
            "loc": {
              "start": {
                "line": 68,
                "column": 30
              },
              "end": {
                "line": 105,
                "column": 13
              }
            }
          },
          "range": [
            2908,
            4348
          ],
          "loc": {
            "start": {
              "line": 68,
              "column": 4
            },
            "end": {
              "line": 105,
              "column": 14
            }
          }
        }
      ],
      "kind": "var",
      "range": [
        2904,
        4349
      ],
      "loc": {
        "start": {
          "line": 68,
          "column": 0
        },
        "end": {
          "line": 105,
          "column": 15
        }
      },
      "leadingComments": [
        {
          "type": "Block",
          "value": "*\n * We need this JSDoc comment for affecting ESDoc.\n * @ignore\n * @extends {Ignored}\n ",
          "range": [
            2812,
            2903
          ],
          "loc": {
            "start": {
              "line": 63,
              "column": 0
            },
            "end": {
              "line": 67,
              "column": 3
            }
          }
        }
      ]
    },
    {
      "type": "FunctionDeclaration",
      "id": {
        "type": "Identifier",
        "name": "dispatchNext",
        "range": [
          4359,
          4371
        ],
        "loc": {
          "start": {
            "line": 106,
            "column": 9
          },
          "end": {
            "line": 106,
            "column": 21
          }
        }
      },
      "params": [
        {
          "type": "Identifier",
          "name": "subscriber",
          "range": [
            4372,
            4382
          ],
          "loc": {
            "start": {
              "line": 106,
              "column": 22
            },
            "end": {
              "line": 106,
              "column": 32
            }
          }
        }
      ],
      "body": {
        "type": "BlockStatement",
        "body": [
          {
            "type": "ExpressionStatement",
            "expression": {
              "type": "CallExpression",
              "callee": {
                "type": "MemberExpression",
                "computed": false,
                "object": {
                  "type": "Identifier",
                  "name": "subscriber",
                  "range": [
                    4390,
                    4400
                  ],
                  "loc": {
                    "start": {
                      "line": 107,
                      "column": 4
                    },
                    "end": {
                      "line": 107,
                      "column": 14
                    }
                  }
                },
                "property": {
                  "type": "Identifier",
                  "name": "debouncedNext",
                  "range": [
                    4401,
                    4414
                  ],
                  "loc": {
                    "start": {
                      "line": 107,
                      "column": 15
                    },
                    "end": {
                      "line": 107,
                      "column": 28
                    }
                  }
                },
                "range": [
                  4390,
                  4414
                ],
                "loc": {
                  "start": {
                    "line": 107,
                    "column": 4
                  },
                  "end": {
                    "line": 107,
                    "column": 28
                  }
                }
              },
              "arguments": [],
              "range": [
                4390,
                4416
              ],
              "loc": {
                "start": {
                  "line": 107,
                  "column": 4
                },
                "end": {
                  "line": 107,
                  "column": 30
                }
              }
            },
            "range": [
              4390,
              4417
            ],
            "loc": {
              "start": {
                "line": 107,
                "column": 4
              },
              "end": {
                "line": 107,
                "column": 31
              }
            }
          }
        ],
        "range": [
          4384,
          4419
        ],
        "loc": {
          "start": {
            "line": 106,
            "column": 34
          },
          "end": {
            "line": 108,
            "column": 1
          }
        }
      },
      "generator": false,
      "expression": false,
      "range": [
        4350,
        4419
      ],
      "loc": {
        "start": {
          "line": 106,
          "column": 0
        },
        "end": {
          "line": 108,
          "column": 1
        }
      },
      "trailingComments": [
        {
          "type": "Line",
          "value": "# sourceMappingURL=debounceTime.js.map",
          "range": [
            4420,
            4460
          ],
          "loc": {
            "start": {
              "line": 109,
              "column": 0
            },
            "end": {
              "line": 109,
              "column": 40
            }
          }
        }
      ]
    }
  ],
  "sourceType": "module",
  "range": [
    0,
    4419
  ],
  "loc": {
    "start": {
      "line": 1,
      "column": 0
    },
    "end": {
      "line": 108,
      "column": 1
    }
  },
  "comments": [
    {
      "type": "Block",
      "value": "*\n * Emits a value from the source Observable only after a particular time span\n * has passed without another source emission.\n *\n * <span class=\"informal\">It's like {@link delay}, but passes only the most\n * recent value from each burst of emissions.</span>\n *\n * <img src=\"./img/debounceTime.png\" width=\"100%\">\n *\n * `debounceTime` delays values emitted by the source Observable, but drops\n * previous pending delayed emissions if a new value arrives on the source\n * Observable. This operator keeps track of the most recent value from the\n * source Observable, and emits that only when `dueTime` enough time has passed\n * without any other value appearing on the source Observable. If a new value\n * appears before `dueTime` silence occurs, the previous value will be dropped\n * and will not be emitted on the output Observable.\n *\n * This is a rate-limiting operator, because it is impossible for more than one\n * value to be emitted in any time window of duration `dueTime`, but it is also\n * a delay-like operator since output emissions do not occur at the same time as\n * they did on the source Observable. Optionally takes a {@link Scheduler} for\n * managing timers.\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.debounceTime(1000);\n * result.subscribe(x => console.log(x));\n *\n * @see {@link auditTime}\n * @see {@link debounce}\n * @see {@link delay}\n * @see {@link sampleTime}\n * @see {@link throttleTime}\n *\n * @param {number} dueTime The timeout duration in milliseconds (or the time\n * unit determined internally by the optional `scheduler`) for the window of\n * time required to wait for emission silence before emitting the most recent\n * source value.\n * @param {Scheduler} [scheduler=async] The {@link Scheduler} to use for\n * managing the timers that handle the timeout for each value.\n * @return {Observable} An Observable that delays the emissions of the source\n * Observable by the specified `dueTime`, and may drop some values if they occur\n * too frequently.\n * @method debounceTime\n * @owner Observable\n ",
      "range": [
        88,
        2241
      ],
      "loc": {
        "start": {
          "line": 3,
          "column": 0
        },
        "end": {
          "line": 48,
          "column": 3
        }
      }
    },
    {
      "type": "Block",
      "value": "*\n * We need this JSDoc comment for affecting ESDoc.\n * @ignore\n * @extends {Ignored}\n ",
      "range": [
        2812,
        2903
      ],
      "loc": {
        "start": {
          "line": 63,
          "column": 0
        },
        "end": {
          "line": 67,
          "column": 3
        }
      }
    },
    {
      "type": "Line",
      "value": "# sourceMappingURL=debounceTime.js.map",
      "range": [
        4420,
        4460
      ],
      "loc": {
        "start": {
          "line": 109,
          "column": 0
        },
        "end": {
          "line": 109,
          "column": 40
        }
      }
    }
  ]
}