{
  "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, then ignores subsequent source\n * values for `duration` milliseconds, then repeats this process.\n *\n * <span class=\"informal\">Lets a value pass, then ignores source values for the\n * next `duration` milliseconds.</span>\n *\n * <img src=\"./img/throttleTime.png\" width=\"100%\">\n *\n * `throttleTime` emits the source Observable values on the output Observable\n * when its internal timer is disabled, and ignores source values when the timer\n * is enabled. Initially, the timer is disabled. As soon as the first source\n * value arrives, it is forwarded to the output Observable, and then the timer\n * is enabled. After `duration` milliseconds (or the time unit determined\n * internally by the optional `scheduler`) has passed, the timer is disabled,\n * and this process repeats for the next source value. Optionally takes a\n * {@link Scheduler} for managing timers.\n *\n * @example <caption>Emit clicks at a rate of at most one click per second</caption>\n * var clicks = Rx.Observable.fromEvent(document, 'click');\n * var result = clicks.throttleTime(1000);\n * result.subscribe(x => console.log(x));\n *\n * @see {@link auditTime}\n * @see {@link debounceTime}\n * @see {@link delay}\n * @see {@link sampleTime}\n * @see {@link throttle}\n *\n * @param {number} duration Time to wait before emitting another value after\n * emitting the last value, measured in milliseconds or the time unit determined\n * internally by the optional `scheduler`.\n * @param {Scheduler} [scheduler=async] The {@link Scheduler} to use for\n * managing the timers that handle the sampling.\n * @return {Observable<T>} An Observable that performs the throttle operation to\n * limit the rate of emissions from the source.\n * @method throttleTime\n * @owner Observable\n ",
          "range": [
            88,
            1865
          ],
          "loc": {
            "start": {
              "line": 3,
              "column": 0
            },
            "end": {
              "line": 41,
              "column": 3
            }
          }
        }
      ]
    },
    {
      "type": "ExportNamedDeclaration",
      "declaration": {
        "type": "FunctionDeclaration",
        "id": {
          "type": "Identifier",
          "name": "throttleTime",
          "range": [
            1882,
            1894
          ],
          "loc": {
            "start": {
              "line": 42,
              "column": 16
            },
            "end": {
              "line": 42,
              "column": 28
            }
          }
        },
        "params": [
          {
            "type": "Identifier",
            "name": "duration",
            "range": [
              1895,
              1903
            ],
            "loc": {
              "start": {
                "line": 42,
                "column": 29
              },
              "end": {
                "line": 42,
                "column": 37
              }
            }
          },
          {
            "type": "Identifier",
            "name": "scheduler",
            "range": [
              1905,
              1914
            ],
            "loc": {
              "start": {
                "line": 42,
                "column": 39
              },
              "end": {
                "line": 42,
                "column": 48
              }
            }
          }
        ],
        "body": {
          "type": "BlockStatement",
          "body": [
            {
              "type": "IfStatement",
              "test": {
                "type": "BinaryExpression",
                "operator": "===",
                "left": {
                  "type": "Identifier",
                  "name": "scheduler",
                  "range": [
                    1926,
                    1935
                  ],
                  "loc": {
                    "start": {
                      "line": 43,
                      "column": 8
                    },
                    "end": {
                      "line": 43,
                      "column": 17
                    }
                  }
                },
                "right": {
                  "type": "UnaryExpression",
                  "operator": "void",
                  "argument": {
                    "type": "Literal",
                    "value": 0,
                    "raw": "0",
                    "range": [
                      1945,
                      1946
                    ],
                    "loc": {
                      "start": {
                        "line": 43,
                        "column": 27
                      },
                      "end": {
                        "line": 43,
                        "column": 28
                      }
                    }
                  },
                  "prefix": true,
                  "range": [
                    1940,
                    1946
                  ],
                  "loc": {
                    "start": {
                      "line": 43,
                      "column": 22
                    },
                    "end": {
                      "line": 43,
                      "column": 28
                    }
                  }
                },
                "range": [
                  1926,
                  1946
                ],
                "loc": {
                  "start": {
                    "line": 43,
                    "column": 8
                  },
                  "end": {
                    "line": 43,
                    "column": 28
                  }
                }
              },
              "consequent": {
                "type": "BlockStatement",
                "body": [
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "AssignmentExpression",
                      "operator": "=",
                      "left": {
                        "type": "Identifier",
                        "name": "scheduler",
                        "range": [
                          1950,
                          1959
                        ],
                        "loc": {
                          "start": {
                            "line": 43,
                            "column": 32
                          },
                          "end": {
                            "line": 43,
                            "column": 41
                          }
                        }
                      },
                      "right": {
                        "type": "Identifier",
                        "name": "async",
                        "range": [
                          1962,
                          1967
                        ],
                        "loc": {
                          "start": {
                            "line": 43,
                            "column": 44
                          },
                          "end": {
                            "line": 43,
                            "column": 49
                          }
                        }
                      },
                      "range": [
                        1950,
                        1967
                      ],
                      "loc": {
                        "start": {
                          "line": 43,
                          "column": 32
                        },
                        "end": {
                          "line": 43,
                          "column": 49
                        }
                      }
                    },
                    "range": [
                      1950,
                      1968
                    ],
                    "loc": {
                      "start": {
                        "line": 43,
                        "column": 32
                      },
                      "end": {
                        "line": 43,
                        "column": 50
                      }
                    }
                  }
                ],
                "range": [
                  1948,
                  1970
                ],
                "loc": {
                  "start": {
                    "line": 43,
                    "column": 30
                  },
                  "end": {
                    "line": 43,
                    "column": 52
                  }
                }
              },
              "alternate": null,
              "range": [
                1922,
                1970
              ],
              "loc": {
                "start": {
                  "line": 43,
                  "column": 4
                },
                "end": {
                  "line": 43,
                  "column": 52
                }
              }
            },
            {
              "type": "ReturnStatement",
              "argument": {
                "type": "CallExpression",
                "callee": {
                  "type": "MemberExpression",
                  "computed": false,
                  "object": {
                    "type": "ThisExpression",
                    "range": [
                      1982,
                      1986
                    ],
                    "loc": {
                      "start": {
                        "line": 44,
                        "column": 11
                      },
                      "end": {
                        "line": 44,
                        "column": 15
                      }
                    }
                  },
                  "property": {
                    "type": "Identifier",
                    "name": "lift",
                    "range": [
                      1987,
                      1991
                    ],
                    "loc": {
                      "start": {
                        "line": 44,
                        "column": 16
                      },
                      "end": {
                        "line": 44,
                        "column": 20
                      }
                    }
                  },
                  "range": [
                    1982,
                    1991
                  ],
                  "loc": {
                    "start": {
                      "line": 44,
                      "column": 11
                    },
                    "end": {
                      "line": 44,
                      "column": 20
                    }
                  }
                },
                "arguments": [
                  {
                    "type": "NewExpression",
                    "callee": {
                      "type": "Identifier",
                      "name": "ThrottleTimeOperator",
                      "range": [
                        1996,
                        2016
                      ],
                      "loc": {
                        "start": {
                          "line": 44,
                          "column": 25
                        },
                        "end": {
                          "line": 44,
                          "column": 45
                        }
                      }
                    },
                    "arguments": [
                      {
                        "type": "Identifier",
                        "name": "duration",
                        "range": [
                          2017,
                          2025
                        ],
                        "loc": {
                          "start": {
                            "line": 44,
                            "column": 46
                          },
                          "end": {
                            "line": 44,
                            "column": 54
                          }
                        }
                      },
                      {
                        "type": "Identifier",
                        "name": "scheduler",
                        "range": [
                          2027,
                          2036
                        ],
                        "loc": {
                          "start": {
                            "line": 44,
                            "column": 56
                          },
                          "end": {
                            "line": 44,
                            "column": 65
                          }
                        }
                      }
                    ],
                    "range": [
                      1992,
                      2037
                    ],
                    "loc": {
                      "start": {
                        "line": 44,
                        "column": 21
                      },
                      "end": {
                        "line": 44,
                        "column": 66
                      }
                    }
                  }
                ],
                "range": [
                  1982,
                  2038
                ],
                "loc": {
                  "start": {
                    "line": 44,
                    "column": 11
                  },
                  "end": {
                    "line": 44,
                    "column": 67
                  }
                }
              },
              "range": [
                1975,
                2039
              ],
              "loc": {
                "start": {
                  "line": 44,
                  "column": 4
                },
                "end": {
                  "line": 44,
                  "column": 68
                }
              }
            }
          ],
          "range": [
            1916,
            2041
          ],
          "loc": {
            "start": {
              "line": 42,
              "column": 50
            },
            "end": {
              "line": 45,
              "column": 1
            }
          }
        },
        "generator": false,
        "expression": false,
        "range": [
          1873,
          2041
        ],
        "loc": {
          "start": {
            "line": 42,
            "column": 7
          },
          "end": {
            "line": 45,
            "column": 1
          }
        },
        "leadingComments": [
          {
            "type": "Block",
            "value": "*\n * Emits a value from the source Observable, then ignores subsequent source\n * values for `duration` milliseconds, then repeats this process.\n *\n * <span class=\"informal\">Lets a value pass, then ignores source values for the\n * next `duration` milliseconds.</span>\n *\n * <img src=\"./img/throttleTime.png\" width=\"100%\">\n *\n * `throttleTime` emits the source Observable values on the output Observable\n * when its internal timer is disabled, and ignores source values when the timer\n * is enabled. Initially, the timer is disabled. As soon as the first source\n * value arrives, it is forwarded to the output Observable, and then the timer\n * is enabled. After `duration` milliseconds (or the time unit determined\n * internally by the optional `scheduler`) has passed, the timer is disabled,\n * and this process repeats for the next source value. Optionally takes a\n * {@link Scheduler} for managing timers.\n *\n * @example <caption>Emit clicks at a rate of at most one click per second</caption>\n * var clicks = Rx.Observable.fromEvent(document, 'click');\n * var result = clicks.throttleTime(1000);\n * result.subscribe(x => console.log(x));\n *\n * @see {@link auditTime}\n * @see {@link debounceTime}\n * @see {@link delay}\n * @see {@link sampleTime}\n * @see {@link throttle}\n *\n * @param {number} duration Time to wait before emitting another value after\n * emitting the last value, measured in milliseconds or the time unit determined\n * internally by the optional `scheduler`.\n * @param {Scheduler} [scheduler=async] The {@link Scheduler} to use for\n * managing the timers that handle the sampling.\n * @return {Observable<T>} An Observable that performs the throttle operation to\n * limit the rate of emissions from the source.\n * @method throttleTime\n * @owner Observable\n ",
            "range": [
              88,
              1865
            ],
            "loc": {
              "start": {
                "line": 3,
                "column": 0
              },
              "end": {
                "line": 41,
                "column": 3
              }
            }
          }
        ],
        "trailingComments": []
      },
      "specifiers": [],
      "source": null,
      "range": [
        1866,
        2041
      ],
      "loc": {
        "start": {
          "line": 42,
          "column": 0
        },
        "end": {
          "line": 45,
          "column": 1
        }
      },
      "leadingComments": [
        {
          "type": "Block",
          "value": "*\n * Emits a value from the source Observable, then ignores subsequent source\n * values for `duration` milliseconds, then repeats this process.\n *\n * <span class=\"informal\">Lets a value pass, then ignores source values for the\n * next `duration` milliseconds.</span>\n *\n * <img src=\"./img/throttleTime.png\" width=\"100%\">\n *\n * `throttleTime` emits the source Observable values on the output Observable\n * when its internal timer is disabled, and ignores source values when the timer\n * is enabled. Initially, the timer is disabled. As soon as the first source\n * value arrives, it is forwarded to the output Observable, and then the timer\n * is enabled. After `duration` milliseconds (or the time unit determined\n * internally by the optional `scheduler`) has passed, the timer is disabled,\n * and this process repeats for the next source value. Optionally takes a\n * {@link Scheduler} for managing timers.\n *\n * @example <caption>Emit clicks at a rate of at most one click per second</caption>\n * var clicks = Rx.Observable.fromEvent(document, 'click');\n * var result = clicks.throttleTime(1000);\n * result.subscribe(x => console.log(x));\n *\n * @see {@link auditTime}\n * @see {@link debounceTime}\n * @see {@link delay}\n * @see {@link sampleTime}\n * @see {@link throttle}\n *\n * @param {number} duration Time to wait before emitting another value after\n * emitting the last value, measured in milliseconds or the time unit determined\n * internally by the optional `scheduler`.\n * @param {Scheduler} [scheduler=async] The {@link Scheduler} to use for\n * managing the timers that handle the sampling.\n * @return {Observable<T>} An Observable that performs the throttle operation to\n * limit the rate of emissions from the source.\n * @method throttleTime\n * @owner Observable\n ",
          "range": [
            88,
            1865
          ],
          "loc": {
            "start": {
              "line": 3,
              "column": 0
            },
            "end": {
              "line": 41,
              "column": 3
            }
          }
        }
      ]
    },
    {
      "type": "VariableDeclaration",
      "declarations": [
        {
          "type": "VariableDeclarator",
          "id": {
            "type": "Identifier",
            "name": "ThrottleTimeOperator",
            "range": [
              2046,
              2066
            ],
            "loc": {
              "start": {
                "line": 46,
                "column": 4
              },
              "end": {
                "line": 46,
                "column": 24
              }
            }
          },
          "init": {
            "type": "CallExpression",
            "callee": {
              "type": "FunctionExpression",
              "id": null,
              "params": [],
              "body": {
                "type": "BlockStatement",
                "body": [
                  {
                    "type": "FunctionDeclaration",
                    "id": {
                      "type": "Identifier",
                      "name": "ThrottleTimeOperator",
                      "range": [
                        2097,
                        2117
                      ],
                      "loc": {
                        "start": {
                          "line": 47,
                          "column": 13
                        },
                        "end": {
                          "line": 47,
                          "column": 33
                        }
                      }
                    },
                    "params": [
                      {
                        "type": "Identifier",
                        "name": "duration",
                        "range": [
                          2118,
                          2126
                        ],
                        "loc": {
                          "start": {
                            "line": 47,
                            "column": 34
                          },
                          "end": {
                            "line": 47,
                            "column": 42
                          }
                        }
                      },
                      {
                        "type": "Identifier",
                        "name": "scheduler",
                        "range": [
                          2128,
                          2137
                        ],
                        "loc": {
                          "start": {
                            "line": 47,
                            "column": 44
                          },
                          "end": {
                            "line": 47,
                            "column": 53
                          }
                        }
                      }
                    ],
                    "body": {
                      "type": "BlockStatement",
                      "body": [
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "AssignmentExpression",
                            "operator": "=",
                            "left": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  2149,
                                  2153
                                ],
                                "loc": {
                                  "start": {
                                    "line": 48,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 48,
                                    "column": 12
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "duration",
                                "range": [
                                  2154,
                                  2162
                                ],
                                "loc": {
                                  "start": {
                                    "line": 48,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 48,
                                    "column": 21
                                  }
                                }
                              },
                              "range": [
                                2149,
                                2162
                              ],
                              "loc": {
                                "start": {
                                  "line": 48,
                                  "column": 8
                                },
                                "end": {
                                  "line": 48,
                                  "column": 21
                                }
                              }
                            },
                            "right": {
                              "type": "Identifier",
                              "name": "duration",
                              "range": [
                                2165,
                                2173
                              ],
                              "loc": {
                                "start": {
                                  "line": 48,
                                  "column": 24
                                },
                                "end": {
                                  "line": 48,
                                  "column": 32
                                }
                              }
                            },
                            "range": [
                              2149,
                              2173
                            ],
                            "loc": {
                              "start": {
                                "line": 48,
                                "column": 8
                              },
                              "end": {
                                "line": 48,
                                "column": 32
                              }
                            }
                          },
                          "range": [
                            2149,
                            2174
                          ],
                          "loc": {
                            "start": {
                              "line": 48,
                              "column": 8
                            },
                            "end": {
                              "line": 48,
                              "column": 33
                            }
                          }
                        },
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "AssignmentExpression",
                            "operator": "=",
                            "left": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  2183,
                                  2187
                                ],
                                "loc": {
                                  "start": {
                                    "line": 49,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 49,
                                    "column": 12
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "scheduler",
                                "range": [
                                  2188,
                                  2197
                                ],
                                "loc": {
                                  "start": {
                                    "line": 49,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 49,
                                    "column": 22
                                  }
                                }
                              },
                              "range": [
                                2183,
                                2197
                              ],
                              "loc": {
                                "start": {
                                  "line": 49,
                                  "column": 8
                                },
                                "end": {
                                  "line": 49,
                                  "column": 22
                                }
                              }
                            },
                            "right": {
                              "type": "Identifier",
                              "name": "scheduler",
                              "range": [
                                2200,
                                2209
                              ],
                              "loc": {
                                "start": {
                                  "line": 49,
                                  "column": 25
                                },
                                "end": {
                                  "line": 49,
                                  "column": 34
                                }
                              }
                            },
                            "range": [
                              2183,
                              2209
                            ],
                            "loc": {
                              "start": {
                                "line": 49,
                                "column": 8
                              },
                              "end": {
                                "line": 49,
                                "column": 34
                              }
                            }
                          },
                          "range": [
                            2183,
                            2210
                          ],
                          "loc": {
                            "start": {
                              "line": 49,
                              "column": 8
                            },
                            "end": {
                              "line": 49,
                              "column": 35
                            }
                          }
                        }
                      ],
                      "range": [
                        2139,
                        2216
                      ],
                      "loc": {
                        "start": {
                          "line": 47,
                          "column": 55
                        },
                        "end": {
                          "line": 50,
                          "column": 5
                        }
                      }
                    },
                    "generator": false,
                    "expression": false,
                    "range": [
                      2088,
                      2216
                    ],
                    "loc": {
                      "start": {
                        "line": 47,
                        "column": 4
                      },
                      "end": {
                        "line": 50,
                        "column": 5
                      }
                    }
                  },
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "AssignmentExpression",
                      "operator": "=",
                      "left": {
                        "type": "MemberExpression",
                        "computed": false,
                        "object": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "Identifier",
                            "name": "ThrottleTimeOperator",
                            "range": [
                              2221,
                              2241
                            ],
                            "loc": {
                              "start": {
                                "line": 51,
                                "column": 4
                              },
                              "end": {
                                "line": 51,
                                "column": 24
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "prototype",
                            "range": [
                              2242,
                              2251
                            ],
                            "loc": {
                              "start": {
                                "line": 51,
                                "column": 25
                              },
                              "end": {
                                "line": 51,
                                "column": 34
                              }
                            }
                          },
                          "range": [
                            2221,
                            2251
                          ],
                          "loc": {
                            "start": {
                              "line": 51,
                              "column": 4
                            },
                            "end": {
                              "line": 51,
                              "column": 34
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "call",
                          "range": [
                            2252,
                            2256
                          ],
                          "loc": {
                            "start": {
                              "line": 51,
                              "column": 35
                            },
                            "end": {
                              "line": 51,
                              "column": 39
                            }
                          }
                        },
                        "range": [
                          2221,
                          2256
                        ],
                        "loc": {
                          "start": {
                            "line": 51,
                            "column": 4
                          },
                          "end": {
                            "line": 51,
                            "column": 39
                          }
                        }
                      },
                      "right": {
                        "type": "FunctionExpression",
                        "id": null,
                        "params": [
                          {
                            "type": "Identifier",
                            "name": "subscriber",
                            "range": [
                              2269,
                              2279
                            ],
                            "loc": {
                              "start": {
                                "line": 51,
                                "column": 52
                              },
                              "end": {
                                "line": 51,
                                "column": 62
                              }
                            }
                          },
                          {
                            "type": "Identifier",
                            "name": "source",
                            "range": [
                              2281,
                              2287
                            ],
                            "loc": {
                              "start": {
                                "line": 51,
                                "column": 64
                              },
                              "end": {
                                "line": 51,
                                "column": 70
                              }
                            }
                          }
                        ],
                        "body": {
                          "type": "BlockStatement",
                          "body": [
                            {
                              "type": "ReturnStatement",
                              "argument": {
                                "type": "CallExpression",
                                "callee": {
                                  "type": "MemberExpression",
                                  "computed": false,
                                  "object": {
                                    "type": "Identifier",
                                    "name": "source",
                                    "range": [
                                      2306,
                                      2312
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 52,
                                        "column": 15
                                      },
                                      "end": {
                                        "line": 52,
                                        "column": 21
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "_subscribe",
                                    "range": [
                                      2313,
                                      2323
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 52,
                                        "column": 22
                                      },
                                      "end": {
                                        "line": 52,
                                        "column": 32
                                      }
                                    }
                                  },
                                  "range": [
                                    2306,
                                    2323
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 52,
                                      "column": 15
                                    },
                                    "end": {
                                      "line": 52,
                                      "column": 32
                                    }
                                  }
                                },
                                "arguments": [
                                  {
                                    "type": "NewExpression",
                                    "callee": {
                                      "type": "Identifier",
                                      "name": "ThrottleTimeSubscriber",
                                      "range": [
                                        2328,
                                        2350
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 52,
                                          "column": 37
                                        },
                                        "end": {
                                          "line": 52,
                                          "column": 59
                                        }
                                      }
                                    },
                                    "arguments": [
                                      {
                                        "type": "Identifier",
                                        "name": "subscriber",
                                        "range": [
                                          2351,
                                          2361
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 52,
                                            "column": 60
                                          },
                                          "end": {
                                            "line": 52,
                                            "column": 70
                                          }
                                        }
                                      },
                                      {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "ThisExpression",
                                          "range": [
                                            2363,
                                            2367
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 52,
                                              "column": 72
                                            },
                                            "end": {
                                              "line": 52,
                                              "column": 76
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "duration",
                                          "range": [
                                            2368,
                                            2376
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 52,
                                              "column": 77
                                            },
                                            "end": {
                                              "line": 52,
                                              "column": 85
                                            }
                                          }
                                        },
                                        "range": [
                                          2363,
                                          2376
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 52,
                                            "column": 72
                                          },
                                          "end": {
                                            "line": 52,
                                            "column": 85
                                          }
                                        }
                                      },
                                      {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "ThisExpression",
                                          "range": [
                                            2378,
                                            2382
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 52,
                                              "column": 87
                                            },
                                            "end": {
                                              "line": 52,
                                              "column": 91
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "scheduler",
                                          "range": [
                                            2383,
                                            2392
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 52,
                                              "column": 92
                                            },
                                            "end": {
                                              "line": 52,
                                              "column": 101
                                            }
                                          }
                                        },
                                        "range": [
                                          2378,
                                          2392
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 52,
                                            "column": 87
                                          },
                                          "end": {
                                            "line": 52,
                                            "column": 101
                                          }
                                        }
                                      }
                                    ],
                                    "range": [
                                      2324,
                                      2393
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 52,
                                        "column": 33
                                      },
                                      "end": {
                                        "line": 52,
                                        "column": 102
                                      }
                                    }
                                  }
                                ],
                                "range": [
                                  2306,
                                  2394
                                ],
                                "loc": {
                                  "start": {
                                    "line": 52,
                                    "column": 15
                                  },
                                  "end": {
                                    "line": 52,
                                    "column": 103
                                  }
                                }
                              },
                              "range": [
                                2299,
                                2395
                              ],
                              "loc": {
                                "start": {
                                  "line": 52,
                                  "column": 8
                                },
                                "end": {
                                  "line": 52,
                                  "column": 104
                                }
                              }
                            }
                          ],
                          "range": [
                            2289,
                            2401
                          ],
                          "loc": {
                            "start": {
                              "line": 51,
                              "column": 72
                            },
                            "end": {
                              "line": 53,
                              "column": 5
                            }
                          }
                        },
                        "generator": false,
                        "expression": false,
                        "range": [
                          2259,
                          2401
                        ],
                        "loc": {
                          "start": {
                            "line": 51,
                            "column": 42
                          },
                          "end": {
                            "line": 53,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        2221,
                        2401
                      ],
                      "loc": {
                        "start": {
                          "line": 51,
                          "column": 4
                        },
                        "end": {
                          "line": 53,
                          "column": 5
                        }
                      }
                    },
                    "range": [
                      2221,
                      2402
                    ],
                    "loc": {
                      "start": {
                        "line": 51,
                        "column": 4
                      },
                      "end": {
                        "line": 53,
                        "column": 6
                      }
                    }
                  },
                  {
                    "type": "ReturnStatement",
                    "argument": {
                      "type": "Identifier",
                      "name": "ThrottleTimeOperator",
                      "range": [
                        2414,
                        2434
                      ],
                      "loc": {
                        "start": {
                          "line": 54,
                          "column": 11
                        },
                        "end": {
                          "line": 54,
                          "column": 31
                        }
                      }
                    },
                    "range": [
                      2407,
                      2435
                    ],
                    "loc": {
                      "start": {
                        "line": 54,
                        "column": 4
                      },
                      "end": {
                        "line": 54,
                        "column": 32
                      }
                    }
                  }
                ],
                "range": [
                  2082,
                  2437
                ],
                "loc": {
                  "start": {
                    "line": 46,
                    "column": 40
                  },
                  "end": {
                    "line": 55,
                    "column": 1
                  }
                }
              },
              "generator": false,
              "expression": false,
              "range": [
                2070,
                2437
              ],
              "loc": {
                "start": {
                  "line": 46,
                  "column": 28
                },
                "end": {
                  "line": 55,
                  "column": 1
                }
              }
            },
            "arguments": [],
            "range": [
              2070,
              2439
            ],
            "loc": {
              "start": {
                "line": 46,
                "column": 28
              },
              "end": {
                "line": 55,
                "column": 3
              }
            }
          },
          "range": [
            2046,
            2440
          ],
          "loc": {
            "start": {
              "line": 46,
              "column": 4
            },
            "end": {
              "line": 55,
              "column": 4
            }
          }
        }
      ],
      "kind": "var",
      "range": [
        2042,
        2441
      ],
      "loc": {
        "start": {
          "line": 46,
          "column": 0
        },
        "end": {
          "line": 55,
          "column": 5
        }
      },
      "trailingComments": [
        {
          "type": "Block",
          "value": "*\n * We need this JSDoc comment for affecting ESDoc.\n * @ignore\n * @extends {Ignored}\n ",
          "range": [
            2442,
            2533
          ],
          "loc": {
            "start": {
              "line": 56,
              "column": 0
            },
            "end": {
              "line": 60,
              "column": 3
            }
          }
        }
      ]
    },
    {
      "type": "VariableDeclaration",
      "declarations": [
        {
          "type": "VariableDeclarator",
          "id": {
            "type": "Identifier",
            "name": "ThrottleTimeSubscriber",
            "range": [
              2538,
              2560
            ],
            "loc": {
              "start": {
                "line": 61,
                "column": 4
              },
              "end": {
                "line": 61,
                "column": 26
              }
            }
          },
          "init": {
            "type": "CallExpression",
            "callee": {
              "type": "FunctionExpression",
              "id": null,
              "params": [
                {
                  "type": "Identifier",
                  "name": "_super",
                  "range": [
                    2574,
                    2580
                  ],
                  "loc": {
                    "start": {
                      "line": 61,
                      "column": 40
                    },
                    "end": {
                      "line": 61,
                      "column": 46
                    }
                  }
                }
              ],
              "body": {
                "type": "BlockStatement",
                "body": [
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "CallExpression",
                      "callee": {
                        "type": "Identifier",
                        "name": "__extends",
                        "range": [
                          2588,
                          2597
                        ],
                        "loc": {
                          "start": {
                            "line": 62,
                            "column": 4
                          },
                          "end": {
                            "line": 62,
                            "column": 13
                          }
                        }
                      },
                      "arguments": [
                        {
                          "type": "Identifier",
                          "name": "ThrottleTimeSubscriber",
                          "range": [
                            2598,
                            2620
                          ],
                          "loc": {
                            "start": {
                              "line": 62,
                              "column": 14
                            },
                            "end": {
                              "line": 62,
                              "column": 36
                            }
                          }
                        },
                        {
                          "type": "Identifier",
                          "name": "_super",
                          "range": [
                            2622,
                            2628
                          ],
                          "loc": {
                            "start": {
                              "line": 62,
                              "column": 38
                            },
                            "end": {
                              "line": 62,
                              "column": 44
                            }
                          }
                        }
                      ],
                      "range": [
                        2588,
                        2629
                      ],
                      "loc": {
                        "start": {
                          "line": 62,
                          "column": 4
                        },
                        "end": {
                          "line": 62,
                          "column": 45
                        }
                      }
                    },
                    "range": [
                      2588,
                      2630
                    ],
                    "loc": {
                      "start": {
                        "line": 62,
                        "column": 4
                      },
                      "end": {
                        "line": 62,
                        "column": 46
                      }
                    }
                  },
                  {
                    "type": "FunctionDeclaration",
                    "id": {
                      "type": "Identifier",
                      "name": "ThrottleTimeSubscriber",
                      "range": [
                        2644,
                        2666
                      ],
                      "loc": {
                        "start": {
                          "line": 63,
                          "column": 13
                        },
                        "end": {
                          "line": 63,
                          "column": 35
                        }
                      }
                    },
                    "params": [
                      {
                        "type": "Identifier",
                        "name": "destination",
                        "range": [
                          2667,
                          2678
                        ],
                        "loc": {
                          "start": {
                            "line": 63,
                            "column": 36
                          },
                          "end": {
                            "line": 63,
                            "column": 47
                          }
                        }
                      },
                      {
                        "type": "Identifier",
                        "name": "duration",
                        "range": [
                          2680,
                          2688
                        ],
                        "loc": {
                          "start": {
                            "line": 63,
                            "column": 49
                          },
                          "end": {
                            "line": 63,
                            "column": 57
                          }
                        }
                      },
                      {
                        "type": "Identifier",
                        "name": "scheduler",
                        "range": [
                          2690,
                          2699
                        ],
                        "loc": {
                          "start": {
                            "line": 63,
                            "column": 59
                          },
                          "end": {
                            "line": 63,
                            "column": 68
                          }
                        }
                      }
                    ],
                    "body": {
                      "type": "BlockStatement",
                      "body": [
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "CallExpression",
                            "callee": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "Identifier",
                                "name": "_super",
                                "range": [
                                  2711,
                                  2717
                                ],
                                "loc": {
                                  "start": {
                                    "line": 64,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 64,
                                    "column": 14
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "call",
                                "range": [
                                  2718,
                                  2722
                                ],
                                "loc": {
                                  "start": {
                                    "line": 64,
                                    "column": 15
                                  },
                                  "end": {
                                    "line": 64,
                                    "column": 19
                                  }
                                }
                              },
                              "range": [
                                2711,
                                2722
                              ],
                              "loc": {
                                "start": {
                                  "line": 64,
                                  "column": 8
                                },
                                "end": {
                                  "line": 64,
                                  "column": 19
                                }
                              }
                            },
                            "arguments": [
                              {
                                "type": "ThisExpression",
                                "range": [
                                  2723,
                                  2727
                                ],
                                "loc": {
                                  "start": {
                                    "line": 64,
                                    "column": 20
                                  },
                                  "end": {
                                    "line": 64,
                                    "column": 24
                                  }
                                }
                              },
                              {
                                "type": "Identifier",
                                "name": "destination",
                                "range": [
                                  2729,
                                  2740
                                ],
                                "loc": {
                                  "start": {
                                    "line": 64,
                                    "column": 26
                                  },
                                  "end": {
                                    "line": 64,
                                    "column": 37
                                  }
                                }
                              }
                            ],
                            "range": [
                              2711,
                              2741
                            ],
                            "loc": {
                              "start": {
                                "line": 64,
                                "column": 8
                              },
                              "end": {
                                "line": 64,
                                "column": 38
                              }
                            }
                          },
                          "range": [
                            2711,
                            2742
                          ],
                          "loc": {
                            "start": {
                              "line": 64,
                              "column": 8
                            },
                            "end": {
                              "line": 64,
                              "column": 39
                            }
                          }
                        },
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "AssignmentExpression",
                            "operator": "=",
                            "left": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  2751,
                                  2755
                                ],
                                "loc": {
                                  "start": {
                                    "line": 65,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 65,
                                    "column": 12
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "duration",
                                "range": [
                                  2756,
                                  2764
                                ],
                                "loc": {
                                  "start": {
                                    "line": 65,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 65,
                                    "column": 21
                                  }
                                }
                              },
                              "range": [
                                2751,
                                2764
                              ],
                              "loc": {
                                "start": {
                                  "line": 65,
                                  "column": 8
                                },
                                "end": {
                                  "line": 65,
                                  "column": 21
                                }
                              }
                            },
                            "right": {
                              "type": "Identifier",
                              "name": "duration",
                              "range": [
                                2767,
                                2775
                              ],
                              "loc": {
                                "start": {
                                  "line": 65,
                                  "column": 24
                                },
                                "end": {
                                  "line": 65,
                                  "column": 32
                                }
                              }
                            },
                            "range": [
                              2751,
                              2775
                            ],
                            "loc": {
                              "start": {
                                "line": 65,
                                "column": 8
                              },
                              "end": {
                                "line": 65,
                                "column": 32
                              }
                            }
                          },
                          "range": [
                            2751,
                            2776
                          ],
                          "loc": {
                            "start": {
                              "line": 65,
                              "column": 8
                            },
                            "end": {
                              "line": 65,
                              "column": 33
                            }
                          }
                        },
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "AssignmentExpression",
                            "operator": "=",
                            "left": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  2785,
                                  2789
                                ],
                                "loc": {
                                  "start": {
                                    "line": 66,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 66,
                                    "column": 12
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "scheduler",
                                "range": [
                                  2790,
                                  2799
                                ],
                                "loc": {
                                  "start": {
                                    "line": 66,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 66,
                                    "column": 22
                                  }
                                }
                              },
                              "range": [
                                2785,
                                2799
                              ],
                              "loc": {
                                "start": {
                                  "line": 66,
                                  "column": 8
                                },
                                "end": {
                                  "line": 66,
                                  "column": 22
                                }
                              }
                            },
                            "right": {
                              "type": "Identifier",
                              "name": "scheduler",
                              "range": [
                                2802,
                                2811
                              ],
                              "loc": {
                                "start": {
                                  "line": 66,
                                  "column": 25
                                },
                                "end": {
                                  "line": 66,
                                  "column": 34
                                }
                              }
                            },
                            "range": [
                              2785,
                              2811
                            ],
                            "loc": {
                              "start": {
                                "line": 66,
                                "column": 8
                              },
                              "end": {
                                "line": 66,
                                "column": 34
                              }
                            }
                          },
                          "range": [
                            2785,
                            2812
                          ],
                          "loc": {
                            "start": {
                              "line": 66,
                              "column": 8
                            },
                            "end": {
                              "line": 66,
                              "column": 35
                            }
                          }
                        }
                      ],
                      "range": [
                        2701,
                        2818
                      ],
                      "loc": {
                        "start": {
                          "line": 63,
                          "column": 70
                        },
                        "end": {
                          "line": 67,
                          "column": 5
                        }
                      }
                    },
                    "generator": false,
                    "expression": false,
                    "range": [
                      2635,
                      2818
                    ],
                    "loc": {
                      "start": {
                        "line": 63,
                        "column": 4
                      },
                      "end": {
                        "line": 67,
                        "column": 5
                      }
                    }
                  },
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "AssignmentExpression",
                      "operator": "=",
                      "left": {
                        "type": "MemberExpression",
                        "computed": false,
                        "object": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "Identifier",
                            "name": "ThrottleTimeSubscriber",
                            "range": [
                              2823,
                              2845
                            ],
                            "loc": {
                              "start": {
                                "line": 68,
                                "column": 4
                              },
                              "end": {
                                "line": 68,
                                "column": 26
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "prototype",
                            "range": [
                              2846,
                              2855
                            ],
                            "loc": {
                              "start": {
                                "line": 68,
                                "column": 27
                              },
                              "end": {
                                "line": 68,
                                "column": 36
                              }
                            }
                          },
                          "range": [
                            2823,
                            2855
                          ],
                          "loc": {
                            "start": {
                              "line": 68,
                              "column": 4
                            },
                            "end": {
                              "line": 68,
                              "column": 36
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "_next",
                          "range": [
                            2856,
                            2861
                          ],
                          "loc": {
                            "start": {
                              "line": 68,
                              "column": 37
                            },
                            "end": {
                              "line": 68,
                              "column": 42
                            }
                          }
                        },
                        "range": [
                          2823,
                          2861
                        ],
                        "loc": {
                          "start": {
                            "line": 68,
                            "column": 4
                          },
                          "end": {
                            "line": 68,
                            "column": 42
                          }
                        }
                      },
                      "right": {
                        "type": "FunctionExpression",
                        "id": null,
                        "params": [
                          {
                            "type": "Identifier",
                            "name": "value",
                            "range": [
                              2874,
                              2879
                            ],
                            "loc": {
                              "start": {
                                "line": 68,
                                "column": 55
                              },
                              "end": {
                                "line": 68,
                                "column": 60
                              }
                            }
                          }
                        ],
                        "body": {
                          "type": "BlockStatement",
                          "body": [
                            {
                              "type": "IfStatement",
                              "test": {
                                "type": "UnaryExpression",
                                "operator": "!",
                                "argument": {
                                  "type": "MemberExpression",
                                  "computed": false,
                                  "object": {
                                    "type": "ThisExpression",
                                    "range": [
                                      2896,
                                      2900
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 69,
                                        "column": 13
                                      },
                                      "end": {
                                        "line": 69,
                                        "column": 17
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "throttled",
                                    "range": [
                                      2901,
                                      2910
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 69,
                                        "column": 18
                                      },
                                      "end": {
                                        "line": 69,
                                        "column": 27
                                      }
                                    }
                                  },
                                  "range": [
                                    2896,
                                    2910
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 69,
                                      "column": 13
                                    },
                                    "end": {
                                      "line": 69,
                                      "column": 27
                                    }
                                  }
                                },
                                "prefix": true,
                                "range": [
                                  2895,
                                  2910
                                ],
                                "loc": {
                                  "start": {
                                    "line": 69,
                                    "column": 12
                                  },
                                  "end": {
                                    "line": 69,
                                    "column": 27
                                  }
                                }
                              },
                              "consequent": {
                                "type": "BlockStatement",
                                "body": [
                                  {
                                    "type": "ExpressionStatement",
                                    "expression": {
                                      "type": "CallExpression",
                                      "callee": {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "ThisExpression",
                                          "range": [
                                            2926,
                                            2930
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 70,
                                              "column": 12
                                            },
                                            "end": {
                                              "line": 70,
                                              "column": 16
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "add",
                                          "range": [
                                            2931,
                                            2934
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 70,
                                              "column": 17
                                            },
                                            "end": {
                                              "line": 70,
                                              "column": 20
                                            }
                                          }
                                        },
                                        "range": [
                                          2926,
                                          2934
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 70,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 70,
                                            "column": 20
                                          }
                                        }
                                      },
                                      "arguments": [
                                        {
                                          "type": "AssignmentExpression",
                                          "operator": "=",
                                          "left": {
                                            "type": "MemberExpression",
                                            "computed": false,
                                            "object": {
                                              "type": "ThisExpression",
                                              "range": [
                                                2935,
                                                2939
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 70,
                                                  "column": 21
                                                },
                                                "end": {
                                                  "line": 70,
                                                  "column": 25
                                                }
                                              }
                                            },
                                            "property": {
                                              "type": "Identifier",
                                              "name": "throttled",
                                              "range": [
                                                2940,
                                                2949
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 70,
                                                  "column": 26
                                                },
                                                "end": {
                                                  "line": 70,
                                                  "column": 35
                                                }
                                              }
                                            },
                                            "range": [
                                              2935,
                                              2949
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 70,
                                                "column": 21
                                              },
                                              "end": {
                                                "line": 70,
                                                "column": 35
                                              }
                                            }
                                          },
                                          "right": {
                                            "type": "CallExpression",
                                            "callee": {
                                              "type": "MemberExpression",
                                              "computed": false,
                                              "object": {
                                                "type": "MemberExpression",
                                                "computed": false,
                                                "object": {
                                                  "type": "ThisExpression",
                                                  "range": [
                                                    2952,
                                                    2956
                                                  ],
                                                  "loc": {
                                                    "start": {
                                                      "line": 70,
                                                      "column": 38
                                                    },
                                                    "end": {
                                                      "line": 70,
                                                      "column": 42
                                                    }
                                                  }
                                                },
                                                "property": {
                                                  "type": "Identifier",
                                                  "name": "scheduler",
                                                  "range": [
                                                    2957,
                                                    2966
                                                  ],
                                                  "loc": {
                                                    "start": {
                                                      "line": 70,
                                                      "column": 43
                                                    },
                                                    "end": {
                                                      "line": 70,
                                                      "column": 52
                                                    }
                                                  }
                                                },
                                                "range": [
                                                  2952,
                                                  2966
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 70,
                                                    "column": 38
                                                  },
                                                  "end": {
                                                    "line": 70,
                                                    "column": 52
                                                  }
                                                }
                                              },
                                              "property": {
                                                "type": "Identifier",
                                                "name": "schedule",
                                                "range": [
                                                  2967,
                                                  2975
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 70,
                                                    "column": 53
                                                  },
                                                  "end": {
                                                    "line": 70,
                                                    "column": 61
                                                  }
                                                }
                                              },
                                              "range": [
                                                2952,
                                                2975
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 70,
                                                  "column": 38
                                                },
                                                "end": {
                                                  "line": 70,
                                                  "column": 61
                                                }
                                              }
                                            },
                                            "arguments": [
                                              {
                                                "type": "Identifier",
                                                "name": "dispatchNext",
                                                "range": [
                                                  2976,
                                                  2988
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 70,
                                                    "column": 62
                                                  },
                                                  "end": {
                                                    "line": 70,
                                                    "column": 74
                                                  }
                                                }
                                              },
                                              {
                                                "type": "MemberExpression",
                                                "computed": false,
                                                "object": {
                                                  "type": "ThisExpression",
                                                  "range": [
                                                    2990,
                                                    2994
                                                  ],
                                                  "loc": {
                                                    "start": {
                                                      "line": 70,
                                                      "column": 76
                                                    },
                                                    "end": {
                                                      "line": 70,
                                                      "column": 80
                                                    }
                                                  }
                                                },
                                                "property": {
                                                  "type": "Identifier",
                                                  "name": "duration",
                                                  "range": [
                                                    2995,
                                                    3003
                                                  ],
                                                  "loc": {
                                                    "start": {
                                                      "line": 70,
                                                      "column": 81
                                                    },
                                                    "end": {
                                                      "line": 70,
                                                      "column": 89
                                                    }
                                                  }
                                                },
                                                "range": [
                                                  2990,
                                                  3003
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 70,
                                                    "column": 76
                                                  },
                                                  "end": {
                                                    "line": 70,
                                                    "column": 89
                                                  }
                                                }
                                              },
                                              {
                                                "type": "ObjectExpression",
                                                "properties": [
                                                  {
                                                    "type": "Property",
                                                    "key": {
                                                      "type": "Identifier",
                                                      "name": "subscriber",
                                                      "range": [
                                                        3007,
                                                        3017
                                                      ],
                                                      "loc": {
                                                        "start": {
                                                          "line": 70,
                                                          "column": 93
                                                        },
                                                        "end": {
                                                          "line": 70,
                                                          "column": 103
                                                        }
                                                      }
                                                    },
                                                    "value": {
                                                      "type": "ThisExpression",
                                                      "range": [
                                                        3019,
                                                        3023
                                                      ],
                                                      "loc": {
                                                        "start": {
                                                          "line": 70,
                                                          "column": 105
                                                        },
                                                        "end": {
                                                          "line": 70,
                                                          "column": 109
                                                        }
                                                      }
                                                    },
                                                    "kind": "init",
                                                    "method": false,
                                                    "shorthand": false,
                                                    "computed": false,
                                                    "range": [
                                                      3007,
                                                      3023
                                                    ],
                                                    "loc": {
                                                      "start": {
                                                        "line": 70,
                                                        "column": 93
                                                      },
                                                      "end": {
                                                        "line": 70,
                                                        "column": 109
                                                      }
                                                    }
                                                  }
                                                ],
                                                "range": [
                                                  3005,
                                                  3025
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 70,
                                                    "column": 91
                                                  },
                                                  "end": {
                                                    "line": 70,
                                                    "column": 111
                                                  }
                                                }
                                              }
                                            ],
                                            "range": [
                                              2952,
                                              3026
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 70,
                                                "column": 38
                                              },
                                              "end": {
                                                "line": 70,
                                                "column": 112
                                              }
                                            }
                                          },
                                          "range": [
                                            2935,
                                            3026
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 70,
                                              "column": 21
                                            },
                                            "end": {
                                              "line": 70,
                                              "column": 112
                                            }
                                          }
                                        }
                                      ],
                                      "range": [
                                        2926,
                                        3027
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 70,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 70,
                                          "column": 113
                                        }
                                      }
                                    },
                                    "range": [
                                      2926,
                                      3028
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 70,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 70,
                                        "column": 114
                                      }
                                    }
                                  },
                                  {
                                    "type": "ExpressionStatement",
                                    "expression": {
                                      "type": "CallExpression",
                                      "callee": {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "MemberExpression",
                                          "computed": false,
                                          "object": {
                                            "type": "ThisExpression",
                                            "range": [
                                              3041,
                                              3045
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 71,
                                                "column": 12
                                              },
                                              "end": {
                                                "line": 71,
                                                "column": 16
                                              }
                                            }
                                          },
                                          "property": {
                                            "type": "Identifier",
                                            "name": "destination",
                                            "range": [
                                              3046,
                                              3057
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 71,
                                                "column": 17
                                              },
                                              "end": {
                                                "line": 71,
                                                "column": 28
                                              }
                                            }
                                          },
                                          "range": [
                                            3041,
                                            3057
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 71,
                                              "column": 12
                                            },
                                            "end": {
                                              "line": 71,
                                              "column": 28
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "next",
                                          "range": [
                                            3058,
                                            3062
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 71,
                                              "column": 29
                                            },
                                            "end": {
                                              "line": 71,
                                              "column": 33
                                            }
                                          }
                                        },
                                        "range": [
                                          3041,
                                          3062
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 71,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 71,
                                            "column": 33
                                          }
                                        }
                                      },
                                      "arguments": [
                                        {
                                          "type": "Identifier",
                                          "name": "value",
                                          "range": [
                                            3063,
                                            3068
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 71,
                                              "column": 34
                                            },
                                            "end": {
                                              "line": 71,
                                              "column": 39
                                            }
                                          }
                                        }
                                      ],
                                      "range": [
                                        3041,
                                        3069
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 71,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 71,
                                          "column": 40
                                        }
                                      }
                                    },
                                    "range": [
                                      3041,
                                      3070
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 71,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 71,
                                        "column": 41
                                      }
                                    }
                                  }
                                ],
                                "range": [
                                  2912,
                                  3080
                                ],
                                "loc": {
                                  "start": {
                                    "line": 69,
                                    "column": 29
                                  },
                                  "end": {
                                    "line": 72,
                                    "column": 9
                                  }
                                }
                              },
                              "alternate": null,
                              "range": [
                                2891,
                                3080
                              ],
                              "loc": {
                                "start": {
                                  "line": 69,
                                  "column": 8
                                },
                                "end": {
                                  "line": 72,
                                  "column": 9
                                }
                              }
                            }
                          ],
                          "range": [
                            2881,
                            3086
                          ],
                          "loc": {
                            "start": {
                              "line": 68,
                              "column": 62
                            },
                            "end": {
                              "line": 73,
                              "column": 5
                            }
                          }
                        },
                        "generator": false,
                        "expression": false,
                        "range": [
                          2864,
                          3086
                        ],
                        "loc": {
                          "start": {
                            "line": 68,
                            "column": 45
                          },
                          "end": {
                            "line": 73,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        2823,
                        3086
                      ],
                      "loc": {
                        "start": {
                          "line": 68,
                          "column": 4
                        },
                        "end": {
                          "line": 73,
                          "column": 5
                        }
                      }
                    },
                    "range": [
                      2823,
                      3087
                    ],
                    "loc": {
                      "start": {
                        "line": 68,
                        "column": 4
                      },
                      "end": {
                        "line": 73,
                        "column": 6
                      }
                    }
                  },
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "AssignmentExpression",
                      "operator": "=",
                      "left": {
                        "type": "MemberExpression",
                        "computed": false,
                        "object": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "Identifier",
                            "name": "ThrottleTimeSubscriber",
                            "range": [
                              3092,
                              3114
                            ],
                            "loc": {
                              "start": {
                                "line": 74,
                                "column": 4
                              },
                              "end": {
                                "line": 74,
                                "column": 26
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "prototype",
                            "range": [
                              3115,
                              3124
                            ],
                            "loc": {
                              "start": {
                                "line": 74,
                                "column": 27
                              },
                              "end": {
                                "line": 74,
                                "column": 36
                              }
                            }
                          },
                          "range": [
                            3092,
                            3124
                          ],
                          "loc": {
                            "start": {
                              "line": 74,
                              "column": 4
                            },
                            "end": {
                              "line": 74,
                              "column": 36
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "clearThrottle",
                          "range": [
                            3125,
                            3138
                          ],
                          "loc": {
                            "start": {
                              "line": 74,
                              "column": 37
                            },
                            "end": {
                              "line": 74,
                              "column": 50
                            }
                          }
                        },
                        "range": [
                          3092,
                          3138
                        ],
                        "loc": {
                          "start": {
                            "line": 74,
                            "column": 4
                          },
                          "end": {
                            "line": 74,
                            "column": 50
                          }
                        }
                      },
                      "right": {
                        "type": "FunctionExpression",
                        "id": null,
                        "params": [],
                        "body": {
                          "type": "BlockStatement",
                          "body": [
                            {
                              "type": "VariableDeclaration",
                              "declarations": [
                                {
                                  "type": "VariableDeclarator",
                                  "id": {
                                    "type": "Identifier",
                                    "name": "throttled",
                                    "range": [
                                      3167,
                                      3176
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 75,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 75,
                                        "column": 21
                                      }
                                    }
                                  },
                                  "init": {
                                    "type": "MemberExpression",
                                    "computed": false,
                                    "object": {
                                      "type": "ThisExpression",
                                      "range": [
                                        3179,
                                        3183
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 75,
                                          "column": 24
                                        },
                                        "end": {
                                          "line": 75,
                                          "column": 28
                                        }
                                      }
                                    },
                                    "property": {
                                      "type": "Identifier",
                                      "name": "throttled",
                                      "range": [
                                        3184,
                                        3193
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 75,
                                          "column": 29
                                        },
                                        "end": {
                                          "line": 75,
                                          "column": 38
                                        }
                                      }
                                    },
                                    "range": [
                                      3179,
                                      3193
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 75,
                                        "column": 24
                                      },
                                      "end": {
                                        "line": 75,
                                        "column": 38
                                      }
                                    }
                                  },
                                  "range": [
                                    3167,
                                    3193
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 75,
                                      "column": 12
                                    },
                                    "end": {
                                      "line": 75,
                                      "column": 38
                                    }
                                  }
                                }
                              ],
                              "kind": "var",
                              "range": [
                                3163,
                                3194
                              ],
                              "loc": {
                                "start": {
                                  "line": 75,
                                  "column": 8
                                },
                                "end": {
                                  "line": 75,
                                  "column": 39
                                }
                              }
                            },
                            {
                              "type": "IfStatement",
                              "test": {
                                "type": "Identifier",
                                "name": "throttled",
                                "range": [
                                  3207,
                                  3216
                                ],
                                "loc": {
                                  "start": {
                                    "line": 76,
                                    "column": 12
                                  },
                                  "end": {
                                    "line": 76,
                                    "column": 21
                                  }
                                }
                              },
                              "consequent": {
                                "type": "BlockStatement",
                                "body": [
                                  {
                                    "type": "ExpressionStatement",
                                    "expression": {
                                      "type": "CallExpression",
                                      "callee": {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "Identifier",
                                          "name": "throttled",
                                          "range": [
                                            3232,
                                            3241
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 77,
                                              "column": 12
                                            },
                                            "end": {
                                              "line": 77,
                                              "column": 21
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "unsubscribe",
                                          "range": [
                                            3242,
                                            3253
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 77,
                                              "column": 22
                                            },
                                            "end": {
                                              "line": 77,
                                              "column": 33
                                            }
                                          }
                                        },
                                        "range": [
                                          3232,
                                          3253
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 77,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 77,
                                            "column": 33
                                          }
                                        }
                                      },
                                      "arguments": [],
                                      "range": [
                                        3232,
                                        3255
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 77,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 77,
                                          "column": 35
                                        }
                                      }
                                    },
                                    "range": [
                                      3232,
                                      3256
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 77,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 77,
                                        "column": 36
                                      }
                                    }
                                  },
                                  {
                                    "type": "ExpressionStatement",
                                    "expression": {
                                      "type": "CallExpression",
                                      "callee": {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "ThisExpression",
                                          "range": [
                                            3269,
                                            3273
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 78,
                                              "column": 12
                                            },
                                            "end": {
                                              "line": 78,
                                              "column": 16
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "remove",
                                          "range": [
                                            3274,
                                            3280
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 78,
                                              "column": 17
                                            },
                                            "end": {
                                              "line": 78,
                                              "column": 23
                                            }
                                          }
                                        },
                                        "range": [
                                          3269,
                                          3280
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 78,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 78,
                                            "column": 23
                                          }
                                        }
                                      },
                                      "arguments": [
                                        {
                                          "type": "Identifier",
                                          "name": "throttled",
                                          "range": [
                                            3281,
                                            3290
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 78,
                                              "column": 24
                                            },
                                            "end": {
                                              "line": 78,
                                              "column": 33
                                            }
                                          }
                                        }
                                      ],
                                      "range": [
                                        3269,
                                        3291
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 78,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 78,
                                          "column": 34
                                        }
                                      }
                                    },
                                    "range": [
                                      3269,
                                      3292
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 78,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 78,
                                        "column": 35
                                      }
                                    }
                                  },
                                  {
                                    "type": "ExpressionStatement",
                                    "expression": {
                                      "type": "AssignmentExpression",
                                      "operator": "=",
                                      "left": {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "ThisExpression",
                                          "range": [
                                            3305,
                                            3309
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 79,
                                              "column": 12
                                            },
                                            "end": {
                                              "line": 79,
                                              "column": 16
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "throttled",
                                          "range": [
                                            3310,
                                            3319
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 79,
                                              "column": 17
                                            },
                                            "end": {
                                              "line": 79,
                                              "column": 26
                                            }
                                          }
                                        },
                                        "range": [
                                          3305,
                                          3319
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 79,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 79,
                                            "column": 26
                                          }
                                        }
                                      },
                                      "right": {
                                        "type": "Literal",
                                        "value": null,
                                        "raw": "null",
                                        "range": [
                                          3322,
                                          3326
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 79,
                                            "column": 29
                                          },
                                          "end": {
                                            "line": 79,
                                            "column": 33
                                          }
                                        }
                                      },
                                      "range": [
                                        3305,
                                        3326
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 79,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 79,
                                          "column": 33
                                        }
                                      }
                                    },
                                    "range": [
                                      3305,
                                      3327
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 79,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 79,
                                        "column": 34
                                      }
                                    }
                                  }
                                ],
                                "range": [
                                  3218,
                                  3337
                                ],
                                "loc": {
                                  "start": {
                                    "line": 76,
                                    "column": 23
                                  },
                                  "end": {
                                    "line": 80,
                                    "column": 9
                                  }
                                }
                              },
                              "alternate": null,
                              "range": [
                                3203,
                                3337
                              ],
                              "loc": {
                                "start": {
                                  "line": 76,
                                  "column": 8
                                },
                                "end": {
                                  "line": 80,
                                  "column": 9
                                }
                              }
                            }
                          ],
                          "range": [
                            3153,
                            3343
                          ],
                          "loc": {
                            "start": {
                              "line": 74,
                              "column": 65
                            },
                            "end": {
                              "line": 81,
                              "column": 5
                            }
                          }
                        },
                        "generator": false,
                        "expression": false,
                        "range": [
                          3141,
                          3343
                        ],
                        "loc": {
                          "start": {
                            "line": 74,
                            "column": 53
                          },
                          "end": {
                            "line": 81,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        3092,
                        3343
                      ],
                      "loc": {
                        "start": {
                          "line": 74,
                          "column": 4
                        },
                        "end": {
                          "line": 81,
                          "column": 5
                        }
                      }
                    },
                    "range": [
                      3092,
                      3344
                    ],
                    "loc": {
                      "start": {
                        "line": 74,
                        "column": 4
                      },
                      "end": {
                        "line": 81,
                        "column": 6
                      }
                    }
                  },
                  {
                    "type": "ReturnStatement",
                    "argument": {
                      "type": "Identifier",
                      "name": "ThrottleTimeSubscriber",
                      "range": [
                        3356,
                        3378
                      ],
                      "loc": {
                        "start": {
                          "line": 82,
                          "column": 11
                        },
                        "end": {
                          "line": 82,
                          "column": 33
                        }
                      }
                    },
                    "range": [
                      3349,
                      3379
                    ],
                    "loc": {
                      "start": {
                        "line": 82,
                        "column": 4
                      },
                      "end": {
                        "line": 82,
                        "column": 34
                      }
                    }
                  }
                ],
                "range": [
                  2582,
                  3381
                ],
                "loc": {
                  "start": {
                    "line": 61,
                    "column": 48
                  },
                  "end": {
                    "line": 83,
                    "column": 1
                  }
                }
              },
              "generator": false,
              "expression": false,
              "range": [
                2564,
                3381
              ],
              "loc": {
                "start": {
                  "line": 61,
                  "column": 30
                },
                "end": {
                  "line": 83,
                  "column": 1
                }
              }
            },
            "arguments": [
              {
                "type": "Identifier",
                "name": "Subscriber",
                "range": [
                  3382,
                  3392
                ],
                "loc": {
                  "start": {
                    "line": 83,
                    "column": 2
                  },
                  "end": {
                    "line": 83,
                    "column": 12
                  }
                }
              }
            ],
            "range": [
              2564,
              3393
            ],
            "loc": {
              "start": {
                "line": 61,
                "column": 30
              },
              "end": {
                "line": 83,
                "column": 13
              }
            }
          },
          "range": [
            2538,
            3394
          ],
          "loc": {
            "start": {
              "line": 61,
              "column": 4
            },
            "end": {
              "line": 83,
              "column": 14
            }
          }
        }
      ],
      "kind": "var",
      "range": [
        2534,
        3395
      ],
      "loc": {
        "start": {
          "line": 61,
          "column": 0
        },
        "end": {
          "line": 83,
          "column": 15
        }
      },
      "leadingComments": [
        {
          "type": "Block",
          "value": "*\n * We need this JSDoc comment for affecting ESDoc.\n * @ignore\n * @extends {Ignored}\n ",
          "range": [
            2442,
            2533
          ],
          "loc": {
            "start": {
              "line": 56,
              "column": 0
            },
            "end": {
              "line": 60,
              "column": 3
            }
          }
        }
      ]
    },
    {
      "type": "FunctionDeclaration",
      "id": {
        "type": "Identifier",
        "name": "dispatchNext",
        "range": [
          3405,
          3417
        ],
        "loc": {
          "start": {
            "line": 84,
            "column": 9
          },
          "end": {
            "line": 84,
            "column": 21
          }
        }
      },
      "params": [
        {
          "type": "Identifier",
          "name": "arg",
          "range": [
            3418,
            3421
          ],
          "loc": {
            "start": {
              "line": 84,
              "column": 22
            },
            "end": {
              "line": 84,
              "column": 25
            }
          }
        }
      ],
      "body": {
        "type": "BlockStatement",
        "body": [
          {
            "type": "VariableDeclaration",
            "declarations": [
              {
                "type": "VariableDeclarator",
                "id": {
                  "type": "Identifier",
                  "name": "subscriber",
                  "range": [
                    3433,
                    3443
                  ],
                  "loc": {
                    "start": {
                      "line": 85,
                      "column": 8
                    },
                    "end": {
                      "line": 85,
                      "column": 18
                    }
                  }
                },
                "init": {
                  "type": "MemberExpression",
                  "computed": false,
                  "object": {
                    "type": "Identifier",
                    "name": "arg",
                    "range": [
                      3446,
                      3449
                    ],
                    "loc": {
                      "start": {
                        "line": 85,
                        "column": 21
                      },
                      "end": {
                        "line": 85,
                        "column": 24
                      }
                    }
                  },
                  "property": {
                    "type": "Identifier",
                    "name": "subscriber",
                    "range": [
                      3450,
                      3460
                    ],
                    "loc": {
                      "start": {
                        "line": 85,
                        "column": 25
                      },
                      "end": {
                        "line": 85,
                        "column": 35
                      }
                    }
                  },
                  "range": [
                    3446,
                    3460
                  ],
                  "loc": {
                    "start": {
                      "line": 85,
                      "column": 21
                    },
                    "end": {
                      "line": 85,
                      "column": 35
                    }
                  }
                },
                "range": [
                  3433,
                  3460
                ],
                "loc": {
                  "start": {
                    "line": 85,
                    "column": 8
                  },
                  "end": {
                    "line": 85,
                    "column": 35
                  }
                }
              }
            ],
            "kind": "var",
            "range": [
              3429,
              3461
            ],
            "loc": {
              "start": {
                "line": 85,
                "column": 4
              },
              "end": {
                "line": 85,
                "column": 36
              }
            }
          },
          {
            "type": "ExpressionStatement",
            "expression": {
              "type": "CallExpression",
              "callee": {
                "type": "MemberExpression",
                "computed": false,
                "object": {
                  "type": "Identifier",
                  "name": "subscriber",
                  "range": [
                    3466,
                    3476
                  ],
                  "loc": {
                    "start": {
                      "line": 86,
                      "column": 4
                    },
                    "end": {
                      "line": 86,
                      "column": 14
                    }
                  }
                },
                "property": {
                  "type": "Identifier",
                  "name": "clearThrottle",
                  "range": [
                    3477,
                    3490
                  ],
                  "loc": {
                    "start": {
                      "line": 86,
                      "column": 15
                    },
                    "end": {
                      "line": 86,
                      "column": 28
                    }
                  }
                },
                "range": [
                  3466,
                  3490
                ],
                "loc": {
                  "start": {
                    "line": 86,
                    "column": 4
                  },
                  "end": {
                    "line": 86,
                    "column": 28
                  }
                }
              },
              "arguments": [],
              "range": [
                3466,
                3492
              ],
              "loc": {
                "start": {
                  "line": 86,
                  "column": 4
                },
                "end": {
                  "line": 86,
                  "column": 30
                }
              }
            },
            "range": [
              3466,
              3493
            ],
            "loc": {
              "start": {
                "line": 86,
                "column": 4
              },
              "end": {
                "line": 86,
                "column": 31
              }
            }
          }
        ],
        "range": [
          3423,
          3495
        ],
        "loc": {
          "start": {
            "line": 84,
            "column": 27
          },
          "end": {
            "line": 87,
            "column": 1
          }
        }
      },
      "generator": false,
      "expression": false,
      "range": [
        3396,
        3495
      ],
      "loc": {
        "start": {
          "line": 84,
          "column": 0
        },
        "end": {
          "line": 87,
          "column": 1
        }
      },
      "trailingComments": [
        {
          "type": "Line",
          "value": "# sourceMappingURL=throttleTime.js.map",
          "range": [
            3496,
            3536
          ],
          "loc": {
            "start": {
              "line": 88,
              "column": 0
            },
            "end": {
              "line": 88,
              "column": 40
            }
          }
        }
      ]
    }
  ],
  "sourceType": "module",
  "range": [
    0,
    3495
  ],
  "loc": {
    "start": {
      "line": 1,
      "column": 0
    },
    "end": {
      "line": 87,
      "column": 1
    }
  },
  "comments": [
    {
      "type": "Block",
      "value": "*\n * Emits a value from the source Observable, then ignores subsequent source\n * values for `duration` milliseconds, then repeats this process.\n *\n * <span class=\"informal\">Lets a value pass, then ignores source values for the\n * next `duration` milliseconds.</span>\n *\n * <img src=\"./img/throttleTime.png\" width=\"100%\">\n *\n * `throttleTime` emits the source Observable values on the output Observable\n * when its internal timer is disabled, and ignores source values when the timer\n * is enabled. Initially, the timer is disabled. As soon as the first source\n * value arrives, it is forwarded to the output Observable, and then the timer\n * is enabled. After `duration` milliseconds (or the time unit determined\n * internally by the optional `scheduler`) has passed, the timer is disabled,\n * and this process repeats for the next source value. Optionally takes a\n * {@link Scheduler} for managing timers.\n *\n * @example <caption>Emit clicks at a rate of at most one click per second</caption>\n * var clicks = Rx.Observable.fromEvent(document, 'click');\n * var result = clicks.throttleTime(1000);\n * result.subscribe(x => console.log(x));\n *\n * @see {@link auditTime}\n * @see {@link debounceTime}\n * @see {@link delay}\n * @see {@link sampleTime}\n * @see {@link throttle}\n *\n * @param {number} duration Time to wait before emitting another value after\n * emitting the last value, measured in milliseconds or the time unit determined\n * internally by the optional `scheduler`.\n * @param {Scheduler} [scheduler=async] The {@link Scheduler} to use for\n * managing the timers that handle the sampling.\n * @return {Observable<T>} An Observable that performs the throttle operation to\n * limit the rate of emissions from the source.\n * @method throttleTime\n * @owner Observable\n ",
      "range": [
        88,
        1865
      ],
      "loc": {
        "start": {
          "line": 3,
          "column": 0
        },
        "end": {
          "line": 41,
          "column": 3
        }
      }
    },
    {
      "type": "Block",
      "value": "*\n * We need this JSDoc comment for affecting ESDoc.\n * @ignore\n * @extends {Ignored}\n ",
      "range": [
        2442,
        2533
      ],
      "loc": {
        "start": {
          "line": 56,
          "column": 0
        },
        "end": {
          "line": 60,
          "column": 3
        }
      }
    },
    {
      "type": "Line",
      "value": "# sourceMappingURL=throttleTime.js.map",
      "range": [
        3496,
        3536
      ],
      "loc": {
        "start": {
          "line": 88,
          "column": 0
        },
        "end": {
          "line": 88,
          "column": 40
        }
      }
    }
  ]
}