{
  "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": "ArgumentOutOfRangeError",
            "range": [
              53,
              76
            ],
            "loc": {
              "start": {
                "line": 2,
                "column": 9
              },
              "end": {
                "line": 2,
                "column": 32
              }
            }
          },
          "imported": {
            "type": "Identifier",
            "name": "ArgumentOutOfRangeError",
            "range": [
              53,
              76
            ],
            "loc": {
              "start": {
                "line": 2,
                "column": 9
              },
              "end": {
                "line": 2,
                "column": 32
              }
            }
          },
          "range": [
            53,
            76
          ],
          "loc": {
            "start": {
              "line": 2,
              "column": 9
            },
            "end": {
              "line": 2,
              "column": 32
            }
          }
        }
      ],
      "source": {
        "type": "Literal",
        "value": "../util/ArgumentOutOfRangeError",
        "raw": "'../util/ArgumentOutOfRangeError'",
        "range": [
          84,
          117
        ],
        "loc": {
          "start": {
            "line": 2,
            "column": 40
          },
          "end": {
            "line": 2,
            "column": 73
          }
        }
      },
      "range": [
        44,
        118
      ],
      "loc": {
        "start": {
          "line": 2,
          "column": 0
        },
        "end": {
          "line": 2,
          "column": 74
        }
      },
      "trailingComments": [
        {
          "type": "Block",
          "value": "*\n * Emits the single value at the specified `index` in a sequence of emissions\n * from the source Observable.\n *\n * <span class=\"informal\">Emits only the i-th value, then completes.</span>\n *\n * <img src=\"./img/elementAt.png\" width=\"100%\">\n *\n * `elementAt` returns an Observable that emits the item at the specified\n * `index` in the source Observable, or a default value if that `index` is out\n * of range and the `default` argument is provided. If the `default` argument is\n * not given and the `index` is out of range, the output Observable will emit an\n * `ArgumentOutOfRangeError` error.\n *\n * @example <caption>Emit only the third click event</caption>\n * var clicks = Rx.Observable.fromEvent(document, 'click');\n * var result = clicks.elementAt(2);\n * result.subscribe(x => console.log(x));\n *\n * @see {@link first}\n * @see {@link last}\n * @see {@link skip}\n * @see {@link single}\n * @see {@link take}\n *\n * @throws {ArgumentOutOfRangeError} When using `elementAt(i)`, it delivers an\n * ArgumentOutOrRangeError to the Observer's `error` callback if `i < 0` or the\n * Observable has completed before emitting the i-th `next` notification.\n *\n * @param {number} index Is the number `i` for the i-th source emission that has\n * happened since the subscription, starting from the number `0`.\n * @param {T} [defaultValue] The default value returned for missing indices.\n * @return {Observable} An Observable that emits a single item, if it is found.\n * Otherwise, will emit the default value if given. If not, then emits an error.\n * @method elementAt\n * @owner Observable\n ",
          "range": [
            119,
            1701
          ],
          "loc": {
            "start": {
              "line": 3,
              "column": 0
            },
            "end": {
              "line": 39,
              "column": 3
            }
          }
        }
      ]
    },
    {
      "type": "ExportNamedDeclaration",
      "declaration": {
        "type": "FunctionDeclaration",
        "id": {
          "type": "Identifier",
          "name": "elementAt",
          "range": [
            1718,
            1727
          ],
          "loc": {
            "start": {
              "line": 40,
              "column": 16
            },
            "end": {
              "line": 40,
              "column": 25
            }
          }
        },
        "params": [
          {
            "type": "Identifier",
            "name": "index",
            "range": [
              1728,
              1733
            ],
            "loc": {
              "start": {
                "line": 40,
                "column": 26
              },
              "end": {
                "line": 40,
                "column": 31
              }
            }
          },
          {
            "type": "Identifier",
            "name": "defaultValue",
            "range": [
              1735,
              1747
            ],
            "loc": {
              "start": {
                "line": 40,
                "column": 33
              },
              "end": {
                "line": 40,
                "column": 45
              }
            }
          }
        ],
        "body": {
          "type": "BlockStatement",
          "body": [
            {
              "type": "ReturnStatement",
              "argument": {
                "type": "CallExpression",
                "callee": {
                  "type": "MemberExpression",
                  "computed": false,
                  "object": {
                    "type": "ThisExpression",
                    "range": [
                      1762,
                      1766
                    ],
                    "loc": {
                      "start": {
                        "line": 41,
                        "column": 11
                      },
                      "end": {
                        "line": 41,
                        "column": 15
                      }
                    }
                  },
                  "property": {
                    "type": "Identifier",
                    "name": "lift",
                    "range": [
                      1767,
                      1771
                    ],
                    "loc": {
                      "start": {
                        "line": 41,
                        "column": 16
                      },
                      "end": {
                        "line": 41,
                        "column": 20
                      }
                    }
                  },
                  "range": [
                    1762,
                    1771
                  ],
                  "loc": {
                    "start": {
                      "line": 41,
                      "column": 11
                    },
                    "end": {
                      "line": 41,
                      "column": 20
                    }
                  }
                },
                "arguments": [
                  {
                    "type": "NewExpression",
                    "callee": {
                      "type": "Identifier",
                      "name": "ElementAtOperator",
                      "range": [
                        1776,
                        1793
                      ],
                      "loc": {
                        "start": {
                          "line": 41,
                          "column": 25
                        },
                        "end": {
                          "line": 41,
                          "column": 42
                        }
                      }
                    },
                    "arguments": [
                      {
                        "type": "Identifier",
                        "name": "index",
                        "range": [
                          1794,
                          1799
                        ],
                        "loc": {
                          "start": {
                            "line": 41,
                            "column": 43
                          },
                          "end": {
                            "line": 41,
                            "column": 48
                          }
                        }
                      },
                      {
                        "type": "Identifier",
                        "name": "defaultValue",
                        "range": [
                          1801,
                          1813
                        ],
                        "loc": {
                          "start": {
                            "line": 41,
                            "column": 50
                          },
                          "end": {
                            "line": 41,
                            "column": 62
                          }
                        }
                      }
                    ],
                    "range": [
                      1772,
                      1814
                    ],
                    "loc": {
                      "start": {
                        "line": 41,
                        "column": 21
                      },
                      "end": {
                        "line": 41,
                        "column": 63
                      }
                    }
                  }
                ],
                "range": [
                  1762,
                  1815
                ],
                "loc": {
                  "start": {
                    "line": 41,
                    "column": 11
                  },
                  "end": {
                    "line": 41,
                    "column": 64
                  }
                }
              },
              "range": [
                1755,
                1816
              ],
              "loc": {
                "start": {
                  "line": 41,
                  "column": 4
                },
                "end": {
                  "line": 41,
                  "column": 65
                }
              }
            }
          ],
          "range": [
            1749,
            1818
          ],
          "loc": {
            "start": {
              "line": 40,
              "column": 47
            },
            "end": {
              "line": 42,
              "column": 1
            }
          }
        },
        "generator": false,
        "expression": false,
        "range": [
          1709,
          1818
        ],
        "loc": {
          "start": {
            "line": 40,
            "column": 7
          },
          "end": {
            "line": 42,
            "column": 1
          }
        },
        "leadingComments": [
          {
            "type": "Block",
            "value": "*\n * Emits the single value at the specified `index` in a sequence of emissions\n * from the source Observable.\n *\n * <span class=\"informal\">Emits only the i-th value, then completes.</span>\n *\n * <img src=\"./img/elementAt.png\" width=\"100%\">\n *\n * `elementAt` returns an Observable that emits the item at the specified\n * `index` in the source Observable, or a default value if that `index` is out\n * of range and the `default` argument is provided. If the `default` argument is\n * not given and the `index` is out of range, the output Observable will emit an\n * `ArgumentOutOfRangeError` error.\n *\n * @example <caption>Emit only the third click event</caption>\n * var clicks = Rx.Observable.fromEvent(document, 'click');\n * var result = clicks.elementAt(2);\n * result.subscribe(x => console.log(x));\n *\n * @see {@link first}\n * @see {@link last}\n * @see {@link skip}\n * @see {@link single}\n * @see {@link take}\n *\n * @throws {ArgumentOutOfRangeError} When using `elementAt(i)`, it delivers an\n * ArgumentOutOrRangeError to the Observer's `error` callback if `i < 0` or the\n * Observable has completed before emitting the i-th `next` notification.\n *\n * @param {number} index Is the number `i` for the i-th source emission that has\n * happened since the subscription, starting from the number `0`.\n * @param {T} [defaultValue] The default value returned for missing indices.\n * @return {Observable} An Observable that emits a single item, if it is found.\n * Otherwise, will emit the default value if given. If not, then emits an error.\n * @method elementAt\n * @owner Observable\n ",
            "range": [
              119,
              1701
            ],
            "loc": {
              "start": {
                "line": 3,
                "column": 0
              },
              "end": {
                "line": 39,
                "column": 3
              }
            }
          }
        ],
        "trailingComments": []
      },
      "specifiers": [],
      "source": null,
      "range": [
        1702,
        1818
      ],
      "loc": {
        "start": {
          "line": 40,
          "column": 0
        },
        "end": {
          "line": 42,
          "column": 1
        }
      },
      "leadingComments": [
        {
          "type": "Block",
          "value": "*\n * Emits the single value at the specified `index` in a sequence of emissions\n * from the source Observable.\n *\n * <span class=\"informal\">Emits only the i-th value, then completes.</span>\n *\n * <img src=\"./img/elementAt.png\" width=\"100%\">\n *\n * `elementAt` returns an Observable that emits the item at the specified\n * `index` in the source Observable, or a default value if that `index` is out\n * of range and the `default` argument is provided. If the `default` argument is\n * not given and the `index` is out of range, the output Observable will emit an\n * `ArgumentOutOfRangeError` error.\n *\n * @example <caption>Emit only the third click event</caption>\n * var clicks = Rx.Observable.fromEvent(document, 'click');\n * var result = clicks.elementAt(2);\n * result.subscribe(x => console.log(x));\n *\n * @see {@link first}\n * @see {@link last}\n * @see {@link skip}\n * @see {@link single}\n * @see {@link take}\n *\n * @throws {ArgumentOutOfRangeError} When using `elementAt(i)`, it delivers an\n * ArgumentOutOrRangeError to the Observer's `error` callback if `i < 0` or the\n * Observable has completed before emitting the i-th `next` notification.\n *\n * @param {number} index Is the number `i` for the i-th source emission that has\n * happened since the subscription, starting from the number `0`.\n * @param {T} [defaultValue] The default value returned for missing indices.\n * @return {Observable} An Observable that emits a single item, if it is found.\n * Otherwise, will emit the default value if given. If not, then emits an error.\n * @method elementAt\n * @owner Observable\n ",
          "range": [
            119,
            1701
          ],
          "loc": {
            "start": {
              "line": 3,
              "column": 0
            },
            "end": {
              "line": 39,
              "column": 3
            }
          }
        }
      ]
    },
    {
      "type": "VariableDeclaration",
      "declarations": [
        {
          "type": "VariableDeclarator",
          "id": {
            "type": "Identifier",
            "name": "ElementAtOperator",
            "range": [
              1823,
              1840
            ],
            "loc": {
              "start": {
                "line": 43,
                "column": 4
              },
              "end": {
                "line": 43,
                "column": 21
              }
            }
          },
          "init": {
            "type": "CallExpression",
            "callee": {
              "type": "FunctionExpression",
              "id": null,
              "params": [],
              "body": {
                "type": "BlockStatement",
                "body": [
                  {
                    "type": "FunctionDeclaration",
                    "id": {
                      "type": "Identifier",
                      "name": "ElementAtOperator",
                      "range": [
                        1871,
                        1888
                      ],
                      "loc": {
                        "start": {
                          "line": 44,
                          "column": 13
                        },
                        "end": {
                          "line": 44,
                          "column": 30
                        }
                      }
                    },
                    "params": [
                      {
                        "type": "Identifier",
                        "name": "index",
                        "range": [
                          1889,
                          1894
                        ],
                        "loc": {
                          "start": {
                            "line": 44,
                            "column": 31
                          },
                          "end": {
                            "line": 44,
                            "column": 36
                          }
                        }
                      },
                      {
                        "type": "Identifier",
                        "name": "defaultValue",
                        "range": [
                          1896,
                          1908
                        ],
                        "loc": {
                          "start": {
                            "line": 44,
                            "column": 38
                          },
                          "end": {
                            "line": 44,
                            "column": 50
                          }
                        }
                      }
                    ],
                    "body": {
                      "type": "BlockStatement",
                      "body": [
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "AssignmentExpression",
                            "operator": "=",
                            "left": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  1920,
                                  1924
                                ],
                                "loc": {
                                  "start": {
                                    "line": 45,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 45,
                                    "column": 12
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "index",
                                "range": [
                                  1925,
                                  1930
                                ],
                                "loc": {
                                  "start": {
                                    "line": 45,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 45,
                                    "column": 18
                                  }
                                }
                              },
                              "range": [
                                1920,
                                1930
                              ],
                              "loc": {
                                "start": {
                                  "line": 45,
                                  "column": 8
                                },
                                "end": {
                                  "line": 45,
                                  "column": 18
                                }
                              }
                            },
                            "right": {
                              "type": "Identifier",
                              "name": "index",
                              "range": [
                                1933,
                                1938
                              ],
                              "loc": {
                                "start": {
                                  "line": 45,
                                  "column": 21
                                },
                                "end": {
                                  "line": 45,
                                  "column": 26
                                }
                              }
                            },
                            "range": [
                              1920,
                              1938
                            ],
                            "loc": {
                              "start": {
                                "line": 45,
                                "column": 8
                              },
                              "end": {
                                "line": 45,
                                "column": 26
                              }
                            }
                          },
                          "range": [
                            1920,
                            1939
                          ],
                          "loc": {
                            "start": {
                              "line": 45,
                              "column": 8
                            },
                            "end": {
                              "line": 45,
                              "column": 27
                            }
                          }
                        },
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "AssignmentExpression",
                            "operator": "=",
                            "left": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  1948,
                                  1952
                                ],
                                "loc": {
                                  "start": {
                                    "line": 46,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 46,
                                    "column": 12
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "defaultValue",
                                "range": [
                                  1953,
                                  1965
                                ],
                                "loc": {
                                  "start": {
                                    "line": 46,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 46,
                                    "column": 25
                                  }
                                }
                              },
                              "range": [
                                1948,
                                1965
                              ],
                              "loc": {
                                "start": {
                                  "line": 46,
                                  "column": 8
                                },
                                "end": {
                                  "line": 46,
                                  "column": 25
                                }
                              }
                            },
                            "right": {
                              "type": "Identifier",
                              "name": "defaultValue",
                              "range": [
                                1968,
                                1980
                              ],
                              "loc": {
                                "start": {
                                  "line": 46,
                                  "column": 28
                                },
                                "end": {
                                  "line": 46,
                                  "column": 40
                                }
                              }
                            },
                            "range": [
                              1948,
                              1980
                            ],
                            "loc": {
                              "start": {
                                "line": 46,
                                "column": 8
                              },
                              "end": {
                                "line": 46,
                                "column": 40
                              }
                            }
                          },
                          "range": [
                            1948,
                            1981
                          ],
                          "loc": {
                            "start": {
                              "line": 46,
                              "column": 8
                            },
                            "end": {
                              "line": 46,
                              "column": 41
                            }
                          }
                        },
                        {
                          "type": "IfStatement",
                          "test": {
                            "type": "BinaryExpression",
                            "operator": "<",
                            "left": {
                              "type": "Identifier",
                              "name": "index",
                              "range": [
                                1994,
                                1999
                              ],
                              "loc": {
                                "start": {
                                  "line": 47,
                                  "column": 12
                                },
                                "end": {
                                  "line": 47,
                                  "column": 17
                                }
                              }
                            },
                            "right": {
                              "type": "Literal",
                              "value": 0,
                              "raw": "0",
                              "range": [
                                2002,
                                2003
                              ],
                              "loc": {
                                "start": {
                                  "line": 47,
                                  "column": 20
                                },
                                "end": {
                                  "line": 47,
                                  "column": 21
                                }
                              }
                            },
                            "range": [
                              1994,
                              2003
                            ],
                            "loc": {
                              "start": {
                                "line": 47,
                                "column": 12
                              },
                              "end": {
                                "line": 47,
                                "column": 21
                              }
                            }
                          },
                          "consequent": {
                            "type": "BlockStatement",
                            "body": [
                              {
                                "type": "ThrowStatement",
                                "argument": {
                                  "type": "NewExpression",
                                  "callee": {
                                    "type": "Identifier",
                                    "name": "ArgumentOutOfRangeError",
                                    "range": [
                                      2029,
                                      2052
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 48,
                                        "column": 22
                                      },
                                      "end": {
                                        "line": 48,
                                        "column": 45
                                      }
                                    }
                                  },
                                  "arguments": [],
                                  "range": [
                                    2025,
                                    2052
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 48,
                                      "column": 18
                                    },
                                    "end": {
                                      "line": 48,
                                      "column": 45
                                    }
                                  }
                                },
                                "range": [
                                  2019,
                                  2053
                                ],
                                "loc": {
                                  "start": {
                                    "line": 48,
                                    "column": 12
                                  },
                                  "end": {
                                    "line": 48,
                                    "column": 46
                                  }
                                }
                              }
                            ],
                            "range": [
                              2005,
                              2063
                            ],
                            "loc": {
                              "start": {
                                "line": 47,
                                "column": 23
                              },
                              "end": {
                                "line": 49,
                                "column": 9
                              }
                            }
                          },
                          "alternate": null,
                          "range": [
                            1990,
                            2063
                          ],
                          "loc": {
                            "start": {
                              "line": 47,
                              "column": 8
                            },
                            "end": {
                              "line": 49,
                              "column": 9
                            }
                          }
                        }
                      ],
                      "range": [
                        1910,
                        2069
                      ],
                      "loc": {
                        "start": {
                          "line": 44,
                          "column": 52
                        },
                        "end": {
                          "line": 50,
                          "column": 5
                        }
                      }
                    },
                    "generator": false,
                    "expression": false,
                    "range": [
                      1862,
                      2069
                    ],
                    "loc": {
                      "start": {
                        "line": 44,
                        "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": "ElementAtOperator",
                            "range": [
                              2074,
                              2091
                            ],
                            "loc": {
                              "start": {
                                "line": 51,
                                "column": 4
                              },
                              "end": {
                                "line": 51,
                                "column": 21
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "prototype",
                            "range": [
                              2092,
                              2101
                            ],
                            "loc": {
                              "start": {
                                "line": 51,
                                "column": 22
                              },
                              "end": {
                                "line": 51,
                                "column": 31
                              }
                            }
                          },
                          "range": [
                            2074,
                            2101
                          ],
                          "loc": {
                            "start": {
                              "line": 51,
                              "column": 4
                            },
                            "end": {
                              "line": 51,
                              "column": 31
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "call",
                          "range": [
                            2102,
                            2106
                          ],
                          "loc": {
                            "start": {
                              "line": 51,
                              "column": 32
                            },
                            "end": {
                              "line": 51,
                              "column": 36
                            }
                          }
                        },
                        "range": [
                          2074,
                          2106
                        ],
                        "loc": {
                          "start": {
                            "line": 51,
                            "column": 4
                          },
                          "end": {
                            "line": 51,
                            "column": 36
                          }
                        }
                      },
                      "right": {
                        "type": "FunctionExpression",
                        "id": null,
                        "params": [
                          {
                            "type": "Identifier",
                            "name": "subscriber",
                            "range": [
                              2119,
                              2129
                            ],
                            "loc": {
                              "start": {
                                "line": 51,
                                "column": 49
                              },
                              "end": {
                                "line": 51,
                                "column": 59
                              }
                            }
                          },
                          {
                            "type": "Identifier",
                            "name": "source",
                            "range": [
                              2131,
                              2137
                            ],
                            "loc": {
                              "start": {
                                "line": 51,
                                "column": 61
                              },
                              "end": {
                                "line": 51,
                                "column": 67
                              }
                            }
                          }
                        ],
                        "body": {
                          "type": "BlockStatement",
                          "body": [
                            {
                              "type": "ReturnStatement",
                              "argument": {
                                "type": "CallExpression",
                                "callee": {
                                  "type": "MemberExpression",
                                  "computed": false,
                                  "object": {
                                    "type": "Identifier",
                                    "name": "source",
                                    "range": [
                                      2156,
                                      2162
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 52,
                                        "column": 15
                                      },
                                      "end": {
                                        "line": 52,
                                        "column": 21
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "_subscribe",
                                    "range": [
                                      2163,
                                      2173
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 52,
                                        "column": 22
                                      },
                                      "end": {
                                        "line": 52,
                                        "column": 32
                                      }
                                    }
                                  },
                                  "range": [
                                    2156,
                                    2173
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 52,
                                      "column": 15
                                    },
                                    "end": {
                                      "line": 52,
                                      "column": 32
                                    }
                                  }
                                },
                                "arguments": [
                                  {
                                    "type": "NewExpression",
                                    "callee": {
                                      "type": "Identifier",
                                      "name": "ElementAtSubscriber",
                                      "range": [
                                        2178,
                                        2197
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 52,
                                          "column": 37
                                        },
                                        "end": {
                                          "line": 52,
                                          "column": 56
                                        }
                                      }
                                    },
                                    "arguments": [
                                      {
                                        "type": "Identifier",
                                        "name": "subscriber",
                                        "range": [
                                          2198,
                                          2208
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 52,
                                            "column": 57
                                          },
                                          "end": {
                                            "line": 52,
                                            "column": 67
                                          }
                                        }
                                      },
                                      {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "ThisExpression",
                                          "range": [
                                            2210,
                                            2214
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 52,
                                              "column": 69
                                            },
                                            "end": {
                                              "line": 52,
                                              "column": 73
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "index",
                                          "range": [
                                            2215,
                                            2220
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 52,
                                              "column": 74
                                            },
                                            "end": {
                                              "line": 52,
                                              "column": 79
                                            }
                                          }
                                        },
                                        "range": [
                                          2210,
                                          2220
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 52,
                                            "column": 69
                                          },
                                          "end": {
                                            "line": 52,
                                            "column": 79
                                          }
                                        }
                                      },
                                      {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "ThisExpression",
                                          "range": [
                                            2222,
                                            2226
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 52,
                                              "column": 81
                                            },
                                            "end": {
                                              "line": 52,
                                              "column": 85
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "defaultValue",
                                          "range": [
                                            2227,
                                            2239
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 52,
                                              "column": 86
                                            },
                                            "end": {
                                              "line": 52,
                                              "column": 98
                                            }
                                          }
                                        },
                                        "range": [
                                          2222,
                                          2239
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 52,
                                            "column": 81
                                          },
                                          "end": {
                                            "line": 52,
                                            "column": 98
                                          }
                                        }
                                      }
                                    ],
                                    "range": [
                                      2174,
                                      2240
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 52,
                                        "column": 33
                                      },
                                      "end": {
                                        "line": 52,
                                        "column": 99
                                      }
                                    }
                                  }
                                ],
                                "range": [
                                  2156,
                                  2241
                                ],
                                "loc": {
                                  "start": {
                                    "line": 52,
                                    "column": 15
                                  },
                                  "end": {
                                    "line": 52,
                                    "column": 100
                                  }
                                }
                              },
                              "range": [
                                2149,
                                2242
                              ],
                              "loc": {
                                "start": {
                                  "line": 52,
                                  "column": 8
                                },
                                "end": {
                                  "line": 52,
                                  "column": 101
                                }
                              }
                            }
                          ],
                          "range": [
                            2139,
                            2248
                          ],
                          "loc": {
                            "start": {
                              "line": 51,
                              "column": 69
                            },
                            "end": {
                              "line": 53,
                              "column": 5
                            }
                          }
                        },
                        "generator": false,
                        "expression": false,
                        "range": [
                          2109,
                          2248
                        ],
                        "loc": {
                          "start": {
                            "line": 51,
                            "column": 39
                          },
                          "end": {
                            "line": 53,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        2074,
                        2248
                      ],
                      "loc": {
                        "start": {
                          "line": 51,
                          "column": 4
                        },
                        "end": {
                          "line": 53,
                          "column": 5
                        }
                      }
                    },
                    "range": [
                      2074,
                      2249
                    ],
                    "loc": {
                      "start": {
                        "line": 51,
                        "column": 4
                      },
                      "end": {
                        "line": 53,
                        "column": 6
                      }
                    }
                  },
                  {
                    "type": "ReturnStatement",
                    "argument": {
                      "type": "Identifier",
                      "name": "ElementAtOperator",
                      "range": [
                        2261,
                        2278
                      ],
                      "loc": {
                        "start": {
                          "line": 54,
                          "column": 11
                        },
                        "end": {
                          "line": 54,
                          "column": 28
                        }
                      }
                    },
                    "range": [
                      2254,
                      2279
                    ],
                    "loc": {
                      "start": {
                        "line": 54,
                        "column": 4
                      },
                      "end": {
                        "line": 54,
                        "column": 29
                      }
                    }
                  }
                ],
                "range": [
                  1856,
                  2281
                ],
                "loc": {
                  "start": {
                    "line": 43,
                    "column": 37
                  },
                  "end": {
                    "line": 55,
                    "column": 1
                  }
                }
              },
              "generator": false,
              "expression": false,
              "range": [
                1844,
                2281
              ],
              "loc": {
                "start": {
                  "line": 43,
                  "column": 25
                },
                "end": {
                  "line": 55,
                  "column": 1
                }
              }
            },
            "arguments": [],
            "range": [
              1844,
              2283
            ],
            "loc": {
              "start": {
                "line": 43,
                "column": 25
              },
              "end": {
                "line": 55,
                "column": 3
              }
            }
          },
          "range": [
            1823,
            2284
          ],
          "loc": {
            "start": {
              "line": 43,
              "column": 4
            },
            "end": {
              "line": 55,
              "column": 4
            }
          }
        }
      ],
      "kind": "var",
      "range": [
        1819,
        2285
      ],
      "loc": {
        "start": {
          "line": 43,
          "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": [
            2286,
            2377
          ],
          "loc": {
            "start": {
              "line": 56,
              "column": 0
            },
            "end": {
              "line": 60,
              "column": 3
            }
          }
        }
      ]
    },
    {
      "type": "VariableDeclaration",
      "declarations": [
        {
          "type": "VariableDeclarator",
          "id": {
            "type": "Identifier",
            "name": "ElementAtSubscriber",
            "range": [
              2382,
              2401
            ],
            "loc": {
              "start": {
                "line": 61,
                "column": 4
              },
              "end": {
                "line": 61,
                "column": 23
              }
            }
          },
          "init": {
            "type": "CallExpression",
            "callee": {
              "type": "FunctionExpression",
              "id": null,
              "params": [
                {
                  "type": "Identifier",
                  "name": "_super",
                  "range": [
                    2415,
                    2421
                  ],
                  "loc": {
                    "start": {
                      "line": 61,
                      "column": 37
                    },
                    "end": {
                      "line": 61,
                      "column": 43
                    }
                  }
                }
              ],
              "body": {
                "type": "BlockStatement",
                "body": [
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "CallExpression",
                      "callee": {
                        "type": "Identifier",
                        "name": "__extends",
                        "range": [
                          2429,
                          2438
                        ],
                        "loc": {
                          "start": {
                            "line": 62,
                            "column": 4
                          },
                          "end": {
                            "line": 62,
                            "column": 13
                          }
                        }
                      },
                      "arguments": [
                        {
                          "type": "Identifier",
                          "name": "ElementAtSubscriber",
                          "range": [
                            2439,
                            2458
                          ],
                          "loc": {
                            "start": {
                              "line": 62,
                              "column": 14
                            },
                            "end": {
                              "line": 62,
                              "column": 33
                            }
                          }
                        },
                        {
                          "type": "Identifier",
                          "name": "_super",
                          "range": [
                            2460,
                            2466
                          ],
                          "loc": {
                            "start": {
                              "line": 62,
                              "column": 35
                            },
                            "end": {
                              "line": 62,
                              "column": 41
                            }
                          }
                        }
                      ],
                      "range": [
                        2429,
                        2467
                      ],
                      "loc": {
                        "start": {
                          "line": 62,
                          "column": 4
                        },
                        "end": {
                          "line": 62,
                          "column": 42
                        }
                      }
                    },
                    "range": [
                      2429,
                      2468
                    ],
                    "loc": {
                      "start": {
                        "line": 62,
                        "column": 4
                      },
                      "end": {
                        "line": 62,
                        "column": 43
                      }
                    }
                  },
                  {
                    "type": "FunctionDeclaration",
                    "id": {
                      "type": "Identifier",
                      "name": "ElementAtSubscriber",
                      "range": [
                        2482,
                        2501
                      ],
                      "loc": {
                        "start": {
                          "line": 63,
                          "column": 13
                        },
                        "end": {
                          "line": 63,
                          "column": 32
                        }
                      }
                    },
                    "params": [
                      {
                        "type": "Identifier",
                        "name": "destination",
                        "range": [
                          2502,
                          2513
                        ],
                        "loc": {
                          "start": {
                            "line": 63,
                            "column": 33
                          },
                          "end": {
                            "line": 63,
                            "column": 44
                          }
                        }
                      },
                      {
                        "type": "Identifier",
                        "name": "index",
                        "range": [
                          2515,
                          2520
                        ],
                        "loc": {
                          "start": {
                            "line": 63,
                            "column": 46
                          },
                          "end": {
                            "line": 63,
                            "column": 51
                          }
                        }
                      },
                      {
                        "type": "Identifier",
                        "name": "defaultValue",
                        "range": [
                          2522,
                          2534
                        ],
                        "loc": {
                          "start": {
                            "line": 63,
                            "column": 53
                          },
                          "end": {
                            "line": 63,
                            "column": 65
                          }
                        }
                      }
                    ],
                    "body": {
                      "type": "BlockStatement",
                      "body": [
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "CallExpression",
                            "callee": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "Identifier",
                                "name": "_super",
                                "range": [
                                  2546,
                                  2552
                                ],
                                "loc": {
                                  "start": {
                                    "line": 64,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 64,
                                    "column": 14
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "call",
                                "range": [
                                  2553,
                                  2557
                                ],
                                "loc": {
                                  "start": {
                                    "line": 64,
                                    "column": 15
                                  },
                                  "end": {
                                    "line": 64,
                                    "column": 19
                                  }
                                }
                              },
                              "range": [
                                2546,
                                2557
                              ],
                              "loc": {
                                "start": {
                                  "line": 64,
                                  "column": 8
                                },
                                "end": {
                                  "line": 64,
                                  "column": 19
                                }
                              }
                            },
                            "arguments": [
                              {
                                "type": "ThisExpression",
                                "range": [
                                  2558,
                                  2562
                                ],
                                "loc": {
                                  "start": {
                                    "line": 64,
                                    "column": 20
                                  },
                                  "end": {
                                    "line": 64,
                                    "column": 24
                                  }
                                }
                              },
                              {
                                "type": "Identifier",
                                "name": "destination",
                                "range": [
                                  2564,
                                  2575
                                ],
                                "loc": {
                                  "start": {
                                    "line": 64,
                                    "column": 26
                                  },
                                  "end": {
                                    "line": 64,
                                    "column": 37
                                  }
                                }
                              }
                            ],
                            "range": [
                              2546,
                              2576
                            ],
                            "loc": {
                              "start": {
                                "line": 64,
                                "column": 8
                              },
                              "end": {
                                "line": 64,
                                "column": 38
                              }
                            }
                          },
                          "range": [
                            2546,
                            2577
                          ],
                          "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": [
                                  2586,
                                  2590
                                ],
                                "loc": {
                                  "start": {
                                    "line": 65,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 65,
                                    "column": 12
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "index",
                                "range": [
                                  2591,
                                  2596
                                ],
                                "loc": {
                                  "start": {
                                    "line": 65,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 65,
                                    "column": 18
                                  }
                                }
                              },
                              "range": [
                                2586,
                                2596
                              ],
                              "loc": {
                                "start": {
                                  "line": 65,
                                  "column": 8
                                },
                                "end": {
                                  "line": 65,
                                  "column": 18
                                }
                              }
                            },
                            "right": {
                              "type": "Identifier",
                              "name": "index",
                              "range": [
                                2599,
                                2604
                              ],
                              "loc": {
                                "start": {
                                  "line": 65,
                                  "column": 21
                                },
                                "end": {
                                  "line": 65,
                                  "column": 26
                                }
                              }
                            },
                            "range": [
                              2586,
                              2604
                            ],
                            "loc": {
                              "start": {
                                "line": 65,
                                "column": 8
                              },
                              "end": {
                                "line": 65,
                                "column": 26
                              }
                            }
                          },
                          "range": [
                            2586,
                            2605
                          ],
                          "loc": {
                            "start": {
                              "line": 65,
                              "column": 8
                            },
                            "end": {
                              "line": 65,
                              "column": 27
                            }
                          }
                        },
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "AssignmentExpression",
                            "operator": "=",
                            "left": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  2614,
                                  2618
                                ],
                                "loc": {
                                  "start": {
                                    "line": 66,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 66,
                                    "column": 12
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "defaultValue",
                                "range": [
                                  2619,
                                  2631
                                ],
                                "loc": {
                                  "start": {
                                    "line": 66,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 66,
                                    "column": 25
                                  }
                                }
                              },
                              "range": [
                                2614,
                                2631
                              ],
                              "loc": {
                                "start": {
                                  "line": 66,
                                  "column": 8
                                },
                                "end": {
                                  "line": 66,
                                  "column": 25
                                }
                              }
                            },
                            "right": {
                              "type": "Identifier",
                              "name": "defaultValue",
                              "range": [
                                2634,
                                2646
                              ],
                              "loc": {
                                "start": {
                                  "line": 66,
                                  "column": 28
                                },
                                "end": {
                                  "line": 66,
                                  "column": 40
                                }
                              }
                            },
                            "range": [
                              2614,
                              2646
                            ],
                            "loc": {
                              "start": {
                                "line": 66,
                                "column": 8
                              },
                              "end": {
                                "line": 66,
                                "column": 40
                              }
                            }
                          },
                          "range": [
                            2614,
                            2647
                          ],
                          "loc": {
                            "start": {
                              "line": 66,
                              "column": 8
                            },
                            "end": {
                              "line": 66,
                              "column": 41
                            }
                          }
                        }
                      ],
                      "range": [
                        2536,
                        2653
                      ],
                      "loc": {
                        "start": {
                          "line": 63,
                          "column": 67
                        },
                        "end": {
                          "line": 67,
                          "column": 5
                        }
                      }
                    },
                    "generator": false,
                    "expression": false,
                    "range": [
                      2473,
                      2653
                    ],
                    "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": "ElementAtSubscriber",
                            "range": [
                              2658,
                              2677
                            ],
                            "loc": {
                              "start": {
                                "line": 68,
                                "column": 4
                              },
                              "end": {
                                "line": 68,
                                "column": 23
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "prototype",
                            "range": [
                              2678,
                              2687
                            ],
                            "loc": {
                              "start": {
                                "line": 68,
                                "column": 24
                              },
                              "end": {
                                "line": 68,
                                "column": 33
                              }
                            }
                          },
                          "range": [
                            2658,
                            2687
                          ],
                          "loc": {
                            "start": {
                              "line": 68,
                              "column": 4
                            },
                            "end": {
                              "line": 68,
                              "column": 33
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "_next",
                          "range": [
                            2688,
                            2693
                          ],
                          "loc": {
                            "start": {
                              "line": 68,
                              "column": 34
                            },
                            "end": {
                              "line": 68,
                              "column": 39
                            }
                          }
                        },
                        "range": [
                          2658,
                          2693
                        ],
                        "loc": {
                          "start": {
                            "line": 68,
                            "column": 4
                          },
                          "end": {
                            "line": 68,
                            "column": 39
                          }
                        }
                      },
                      "right": {
                        "type": "FunctionExpression",
                        "id": null,
                        "params": [
                          {
                            "type": "Identifier",
                            "name": "x",
                            "range": [
                              2706,
                              2707
                            ],
                            "loc": {
                              "start": {
                                "line": 68,
                                "column": 52
                              },
                              "end": {
                                "line": 68,
                                "column": 53
                              }
                            }
                          }
                        ],
                        "body": {
                          "type": "BlockStatement",
                          "body": [
                            {
                              "type": "IfStatement",
                              "test": {
                                "type": "BinaryExpression",
                                "operator": "===",
                                "left": {
                                  "type": "UpdateExpression",
                                  "operator": "--",
                                  "argument": {
                                    "type": "MemberExpression",
                                    "computed": false,
                                    "object": {
                                      "type": "ThisExpression",
                                      "range": [
                                        2723,
                                        2727
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 69,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 69,
                                          "column": 16
                                        }
                                      }
                                    },
                                    "property": {
                                      "type": "Identifier",
                                      "name": "index",
                                      "range": [
                                        2728,
                                        2733
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 69,
                                          "column": 17
                                        },
                                        "end": {
                                          "line": 69,
                                          "column": 22
                                        }
                                      }
                                    },
                                    "range": [
                                      2723,
                                      2733
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 69,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 69,
                                        "column": 22
                                      }
                                    }
                                  },
                                  "prefix": false,
                                  "range": [
                                    2723,
                                    2735
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 69,
                                      "column": 12
                                    },
                                    "end": {
                                      "line": 69,
                                      "column": 24
                                    }
                                  }
                                },
                                "right": {
                                  "type": "Literal",
                                  "value": 0,
                                  "raw": "0",
                                  "range": [
                                    2740,
                                    2741
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 69,
                                      "column": 29
                                    },
                                    "end": {
                                      "line": 69,
                                      "column": 30
                                    }
                                  }
                                },
                                "range": [
                                  2723,
                                  2741
                                ],
                                "loc": {
                                  "start": {
                                    "line": 69,
                                    "column": 12
                                  },
                                  "end": {
                                    "line": 69,
                                    "column": 30
                                  }
                                }
                              },
                              "consequent": {
                                "type": "BlockStatement",
                                "body": [
                                  {
                                    "type": "ExpressionStatement",
                                    "expression": {
                                      "type": "CallExpression",
                                      "callee": {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "MemberExpression",
                                          "computed": false,
                                          "object": {
                                            "type": "ThisExpression",
                                            "range": [
                                              2757,
                                              2761
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 70,
                                                "column": 12
                                              },
                                              "end": {
                                                "line": 70,
                                                "column": 16
                                              }
                                            }
                                          },
                                          "property": {
                                            "type": "Identifier",
                                            "name": "destination",
                                            "range": [
                                              2762,
                                              2773
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 70,
                                                "column": 17
                                              },
                                              "end": {
                                                "line": 70,
                                                "column": 28
                                              }
                                            }
                                          },
                                          "range": [
                                            2757,
                                            2773
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 70,
                                              "column": 12
                                            },
                                            "end": {
                                              "line": 70,
                                              "column": 28
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "next",
                                          "range": [
                                            2774,
                                            2778
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 70,
                                              "column": 29
                                            },
                                            "end": {
                                              "line": 70,
                                              "column": 33
                                            }
                                          }
                                        },
                                        "range": [
                                          2757,
                                          2778
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 70,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 70,
                                            "column": 33
                                          }
                                        }
                                      },
                                      "arguments": [
                                        {
                                          "type": "Identifier",
                                          "name": "x",
                                          "range": [
                                            2779,
                                            2780
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 70,
                                              "column": 34
                                            },
                                            "end": {
                                              "line": 70,
                                              "column": 35
                                            }
                                          }
                                        }
                                      ],
                                      "range": [
                                        2757,
                                        2781
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 70,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 70,
                                          "column": 36
                                        }
                                      }
                                    },
                                    "range": [
                                      2757,
                                      2782
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 70,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 70,
                                        "column": 37
                                      }
                                    }
                                  },
                                  {
                                    "type": "ExpressionStatement",
                                    "expression": {
                                      "type": "CallExpression",
                                      "callee": {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "MemberExpression",
                                          "computed": false,
                                          "object": {
                                            "type": "ThisExpression",
                                            "range": [
                                              2795,
                                              2799
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 71,
                                                "column": 12
                                              },
                                              "end": {
                                                "line": 71,
                                                "column": 16
                                              }
                                            }
                                          },
                                          "property": {
                                            "type": "Identifier",
                                            "name": "destination",
                                            "range": [
                                              2800,
                                              2811
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 71,
                                                "column": 17
                                              },
                                              "end": {
                                                "line": 71,
                                                "column": 28
                                              }
                                            }
                                          },
                                          "range": [
                                            2795,
                                            2811
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 71,
                                              "column": 12
                                            },
                                            "end": {
                                              "line": 71,
                                              "column": 28
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "complete",
                                          "range": [
                                            2812,
                                            2820
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 71,
                                              "column": 29
                                            },
                                            "end": {
                                              "line": 71,
                                              "column": 37
                                            }
                                          }
                                        },
                                        "range": [
                                          2795,
                                          2820
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 71,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 71,
                                            "column": 37
                                          }
                                        }
                                      },
                                      "arguments": [],
                                      "range": [
                                        2795,
                                        2822
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 71,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 71,
                                          "column": 39
                                        }
                                      }
                                    },
                                    "range": [
                                      2795,
                                      2823
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 71,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 71,
                                        "column": 40
                                      }
                                    }
                                  }
                                ],
                                "range": [
                                  2743,
                                  2833
                                ],
                                "loc": {
                                  "start": {
                                    "line": 69,
                                    "column": 32
                                  },
                                  "end": {
                                    "line": 72,
                                    "column": 9
                                  }
                                }
                              },
                              "alternate": null,
                              "range": [
                                2719,
                                2833
                              ],
                              "loc": {
                                "start": {
                                  "line": 69,
                                  "column": 8
                                },
                                "end": {
                                  "line": 72,
                                  "column": 9
                                }
                              }
                            }
                          ],
                          "range": [
                            2709,
                            2839
                          ],
                          "loc": {
                            "start": {
                              "line": 68,
                              "column": 55
                            },
                            "end": {
                              "line": 73,
                              "column": 5
                            }
                          }
                        },
                        "generator": false,
                        "expression": false,
                        "range": [
                          2696,
                          2839
                        ],
                        "loc": {
                          "start": {
                            "line": 68,
                            "column": 42
                          },
                          "end": {
                            "line": 73,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        2658,
                        2839
                      ],
                      "loc": {
                        "start": {
                          "line": 68,
                          "column": 4
                        },
                        "end": {
                          "line": 73,
                          "column": 5
                        }
                      }
                    },
                    "range": [
                      2658,
                      2840
                    ],
                    "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": "ElementAtSubscriber",
                            "range": [
                              2845,
                              2864
                            ],
                            "loc": {
                              "start": {
                                "line": 74,
                                "column": 4
                              },
                              "end": {
                                "line": 74,
                                "column": 23
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "prototype",
                            "range": [
                              2865,
                              2874
                            ],
                            "loc": {
                              "start": {
                                "line": 74,
                                "column": 24
                              },
                              "end": {
                                "line": 74,
                                "column": 33
                              }
                            }
                          },
                          "range": [
                            2845,
                            2874
                          ],
                          "loc": {
                            "start": {
                              "line": 74,
                              "column": 4
                            },
                            "end": {
                              "line": 74,
                              "column": 33
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "_complete",
                          "range": [
                            2875,
                            2884
                          ],
                          "loc": {
                            "start": {
                              "line": 74,
                              "column": 34
                            },
                            "end": {
                              "line": 74,
                              "column": 43
                            }
                          }
                        },
                        "range": [
                          2845,
                          2884
                        ],
                        "loc": {
                          "start": {
                            "line": 74,
                            "column": 4
                          },
                          "end": {
                            "line": 74,
                            "column": 43
                          }
                        }
                      },
                      "right": {
                        "type": "FunctionExpression",
                        "id": null,
                        "params": [],
                        "body": {
                          "type": "BlockStatement",
                          "body": [
                            {
                              "type": "VariableDeclaration",
                              "declarations": [
                                {
                                  "type": "VariableDeclarator",
                                  "id": {
                                    "type": "Identifier",
                                    "name": "destination",
                                    "range": [
                                      2913,
                                      2924
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 75,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 75,
                                        "column": 23
                                      }
                                    }
                                  },
                                  "init": {
                                    "type": "MemberExpression",
                                    "computed": false,
                                    "object": {
                                      "type": "ThisExpression",
                                      "range": [
                                        2927,
                                        2931
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 75,
                                          "column": 26
                                        },
                                        "end": {
                                          "line": 75,
                                          "column": 30
                                        }
                                      }
                                    },
                                    "property": {
                                      "type": "Identifier",
                                      "name": "destination",
                                      "range": [
                                        2932,
                                        2943
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 75,
                                          "column": 31
                                        },
                                        "end": {
                                          "line": 75,
                                          "column": 42
                                        }
                                      }
                                    },
                                    "range": [
                                      2927,
                                      2943
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 75,
                                        "column": 26
                                      },
                                      "end": {
                                        "line": 75,
                                        "column": 42
                                      }
                                    }
                                  },
                                  "range": [
                                    2913,
                                    2943
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 75,
                                      "column": 12
                                    },
                                    "end": {
                                      "line": 75,
                                      "column": 42
                                    }
                                  }
                                }
                              ],
                              "kind": "var",
                              "range": [
                                2909,
                                2944
                              ],
                              "loc": {
                                "start": {
                                  "line": 75,
                                  "column": 8
                                },
                                "end": {
                                  "line": 75,
                                  "column": 43
                                }
                              }
                            },
                            {
                              "type": "IfStatement",
                              "test": {
                                "type": "BinaryExpression",
                                "operator": ">=",
                                "left": {
                                  "type": "MemberExpression",
                                  "computed": false,
                                  "object": {
                                    "type": "ThisExpression",
                                    "range": [
                                      2957,
                                      2961
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 76,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 76,
                                        "column": 16
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "index",
                                    "range": [
                                      2962,
                                      2967
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 76,
                                        "column": 17
                                      },
                                      "end": {
                                        "line": 76,
                                        "column": 22
                                      }
                                    }
                                  },
                                  "range": [
                                    2957,
                                    2967
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 76,
                                      "column": 12
                                    },
                                    "end": {
                                      "line": 76,
                                      "column": 22
                                    }
                                  }
                                },
                                "right": {
                                  "type": "Literal",
                                  "value": 0,
                                  "raw": "0",
                                  "range": [
                                    2971,
                                    2972
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 76,
                                      "column": 26
                                    },
                                    "end": {
                                      "line": 76,
                                      "column": 27
                                    }
                                  }
                                },
                                "range": [
                                  2957,
                                  2972
                                ],
                                "loc": {
                                  "start": {
                                    "line": 76,
                                    "column": 12
                                  },
                                  "end": {
                                    "line": 76,
                                    "column": 27
                                  }
                                }
                              },
                              "consequent": {
                                "type": "BlockStatement",
                                "body": [
                                  {
                                    "type": "IfStatement",
                                    "test": {
                                      "type": "BinaryExpression",
                                      "operator": "!==",
                                      "left": {
                                        "type": "UnaryExpression",
                                        "operator": "typeof",
                                        "argument": {
                                          "type": "MemberExpression",
                                          "computed": false,
                                          "object": {
                                            "type": "ThisExpression",
                                            "range": [
                                              2999,
                                              3003
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 77,
                                                "column": 23
                                              },
                                              "end": {
                                                "line": 77,
                                                "column": 27
                                              }
                                            }
                                          },
                                          "property": {
                                            "type": "Identifier",
                                            "name": "defaultValue",
                                            "range": [
                                              3004,
                                              3016
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 77,
                                                "column": 28
                                              },
                                              "end": {
                                                "line": 77,
                                                "column": 40
                                              }
                                            }
                                          },
                                          "range": [
                                            2999,
                                            3016
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 77,
                                              "column": 23
                                            },
                                            "end": {
                                              "line": 77,
                                              "column": 40
                                            }
                                          }
                                        },
                                        "prefix": true,
                                        "range": [
                                          2992,
                                          3016
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 77,
                                            "column": 16
                                          },
                                          "end": {
                                            "line": 77,
                                            "column": 40
                                          }
                                        }
                                      },
                                      "right": {
                                        "type": "Literal",
                                        "value": "undefined",
                                        "raw": "'undefined'",
                                        "range": [
                                          3021,
                                          3032
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 77,
                                            "column": 45
                                          },
                                          "end": {
                                            "line": 77,
                                            "column": 56
                                          }
                                        }
                                      },
                                      "range": [
                                        2992,
                                        3032
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 77,
                                          "column": 16
                                        },
                                        "end": {
                                          "line": 77,
                                          "column": 56
                                        }
                                      }
                                    },
                                    "consequent": {
                                      "type": "BlockStatement",
                                      "body": [
                                        {
                                          "type": "ExpressionStatement",
                                          "expression": {
                                            "type": "CallExpression",
                                            "callee": {
                                              "type": "MemberExpression",
                                              "computed": false,
                                              "object": {
                                                "type": "Identifier",
                                                "name": "destination",
                                                "range": [
                                                  3052,
                                                  3063
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 78,
                                                    "column": 16
                                                  },
                                                  "end": {
                                                    "line": 78,
                                                    "column": 27
                                                  }
                                                }
                                              },
                                              "property": {
                                                "type": "Identifier",
                                                "name": "next",
                                                "range": [
                                                  3064,
                                                  3068
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 78,
                                                    "column": 28
                                                  },
                                                  "end": {
                                                    "line": 78,
                                                    "column": 32
                                                  }
                                                }
                                              },
                                              "range": [
                                                3052,
                                                3068
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 78,
                                                  "column": 16
                                                },
                                                "end": {
                                                  "line": 78,
                                                  "column": 32
                                                }
                                              }
                                            },
                                            "arguments": [
                                              {
                                                "type": "MemberExpression",
                                                "computed": false,
                                                "object": {
                                                  "type": "ThisExpression",
                                                  "range": [
                                                    3069,
                                                    3073
                                                  ],
                                                  "loc": {
                                                    "start": {
                                                      "line": 78,
                                                      "column": 33
                                                    },
                                                    "end": {
                                                      "line": 78,
                                                      "column": 37
                                                    }
                                                  }
                                                },
                                                "property": {
                                                  "type": "Identifier",
                                                  "name": "defaultValue",
                                                  "range": [
                                                    3074,
                                                    3086
                                                  ],
                                                  "loc": {
                                                    "start": {
                                                      "line": 78,
                                                      "column": 38
                                                    },
                                                    "end": {
                                                      "line": 78,
                                                      "column": 50
                                                    }
                                                  }
                                                },
                                                "range": [
                                                  3069,
                                                  3086
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 78,
                                                    "column": 33
                                                  },
                                                  "end": {
                                                    "line": 78,
                                                    "column": 50
                                                  }
                                                }
                                              }
                                            ],
                                            "range": [
                                              3052,
                                              3087
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 78,
                                                "column": 16
                                              },
                                              "end": {
                                                "line": 78,
                                                "column": 51
                                              }
                                            }
                                          },
                                          "range": [
                                            3052,
                                            3088
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 78,
                                              "column": 16
                                            },
                                            "end": {
                                              "line": 78,
                                              "column": 52
                                            }
                                          }
                                        }
                                      ],
                                      "range": [
                                        3034,
                                        3102
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 77,
                                          "column": 58
                                        },
                                        "end": {
                                          "line": 79,
                                          "column": 13
                                        }
                                      }
                                    },
                                    "alternate": {
                                      "type": "BlockStatement",
                                      "body": [
                                        {
                                          "type": "ExpressionStatement",
                                          "expression": {
                                            "type": "CallExpression",
                                            "callee": {
                                              "type": "MemberExpression",
                                              "computed": false,
                                              "object": {
                                                "type": "Identifier",
                                                "name": "destination",
                                                "range": [
                                                  3138,
                                                  3149
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 81,
                                                    "column": 16
                                                  },
                                                  "end": {
                                                    "line": 81,
                                                    "column": 27
                                                  }
                                                }
                                              },
                                              "property": {
                                                "type": "Identifier",
                                                "name": "error",
                                                "range": [
                                                  3150,
                                                  3155
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 81,
                                                    "column": 28
                                                  },
                                                  "end": {
                                                    "line": 81,
                                                    "column": 33
                                                  }
                                                }
                                              },
                                              "range": [
                                                3138,
                                                3155
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 81,
                                                  "column": 16
                                                },
                                                "end": {
                                                  "line": 81,
                                                  "column": 33
                                                }
                                              }
                                            },
                                            "arguments": [
                                              {
                                                "type": "NewExpression",
                                                "callee": {
                                                  "type": "Identifier",
                                                  "name": "ArgumentOutOfRangeError",
                                                  "range": [
                                                    3160,
                                                    3183
                                                  ],
                                                  "loc": {
                                                    "start": {
                                                      "line": 81,
                                                      "column": 38
                                                    },
                                                    "end": {
                                                      "line": 81,
                                                      "column": 61
                                                    }
                                                  }
                                                },
                                                "arguments": [],
                                                "range": [
                                                  3156,
                                                  3183
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 81,
                                                    "column": 34
                                                  },
                                                  "end": {
                                                    "line": 81,
                                                    "column": 61
                                                  }
                                                }
                                              }
                                            ],
                                            "range": [
                                              3138,
                                              3184
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 81,
                                                "column": 16
                                              },
                                              "end": {
                                                "line": 81,
                                                "column": 62
                                              }
                                            }
                                          },
                                          "range": [
                                            3138,
                                            3185
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 81,
                                              "column": 16
                                            },
                                            "end": {
                                              "line": 81,
                                              "column": 63
                                            }
                                          }
                                        }
                                      ],
                                      "range": [
                                        3120,
                                        3199
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 80,
                                          "column": 17
                                        },
                                        "end": {
                                          "line": 82,
                                          "column": 13
                                        }
                                      }
                                    },
                                    "range": [
                                      2988,
                                      3199
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 77,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 82,
                                        "column": 13
                                      }
                                    }
                                  }
                                ],
                                "range": [
                                  2974,
                                  3209
                                ],
                                "loc": {
                                  "start": {
                                    "line": 76,
                                    "column": 29
                                  },
                                  "end": {
                                    "line": 83,
                                    "column": 9
                                  }
                                }
                              },
                              "alternate": null,
                              "range": [
                                2953,
                                3209
                              ],
                              "loc": {
                                "start": {
                                  "line": 76,
                                  "column": 8
                                },
                                "end": {
                                  "line": 83,
                                  "column": 9
                                }
                              }
                            },
                            {
                              "type": "ExpressionStatement",
                              "expression": {
                                "type": "CallExpression",
                                "callee": {
                                  "type": "MemberExpression",
                                  "computed": false,
                                  "object": {
                                    "type": "Identifier",
                                    "name": "destination",
                                    "range": [
                                      3218,
                                      3229
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 84,
                                        "column": 8
                                      },
                                      "end": {
                                        "line": 84,
                                        "column": 19
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "complete",
                                    "range": [
                                      3230,
                                      3238
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 84,
                                        "column": 20
                                      },
                                      "end": {
                                        "line": 84,
                                        "column": 28
                                      }
                                    }
                                  },
                                  "range": [
                                    3218,
                                    3238
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 84,
                                      "column": 8
                                    },
                                    "end": {
                                      "line": 84,
                                      "column": 28
                                    }
                                  }
                                },
                                "arguments": [],
                                "range": [
                                  3218,
                                  3240
                                ],
                                "loc": {
                                  "start": {
                                    "line": 84,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 84,
                                    "column": 30
                                  }
                                }
                              },
                              "range": [
                                3218,
                                3241
                              ],
                              "loc": {
                                "start": {
                                  "line": 84,
                                  "column": 8
                                },
                                "end": {
                                  "line": 84,
                                  "column": 31
                                }
                              }
                            }
                          ],
                          "range": [
                            2899,
                            3247
                          ],
                          "loc": {
                            "start": {
                              "line": 74,
                              "column": 58
                            },
                            "end": {
                              "line": 85,
                              "column": 5
                            }
                          }
                        },
                        "generator": false,
                        "expression": false,
                        "range": [
                          2887,
                          3247
                        ],
                        "loc": {
                          "start": {
                            "line": 74,
                            "column": 46
                          },
                          "end": {
                            "line": 85,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        2845,
                        3247
                      ],
                      "loc": {
                        "start": {
                          "line": 74,
                          "column": 4
                        },
                        "end": {
                          "line": 85,
                          "column": 5
                        }
                      }
                    },
                    "range": [
                      2845,
                      3248
                    ],
                    "loc": {
                      "start": {
                        "line": 74,
                        "column": 4
                      },
                      "end": {
                        "line": 85,
                        "column": 6
                      }
                    }
                  },
                  {
                    "type": "ReturnStatement",
                    "argument": {
                      "type": "Identifier",
                      "name": "ElementAtSubscriber",
                      "range": [
                        3260,
                        3279
                      ],
                      "loc": {
                        "start": {
                          "line": 86,
                          "column": 11
                        },
                        "end": {
                          "line": 86,
                          "column": 30
                        }
                      }
                    },
                    "range": [
                      3253,
                      3280
                    ],
                    "loc": {
                      "start": {
                        "line": 86,
                        "column": 4
                      },
                      "end": {
                        "line": 86,
                        "column": 31
                      }
                    }
                  }
                ],
                "range": [
                  2423,
                  3282
                ],
                "loc": {
                  "start": {
                    "line": 61,
                    "column": 45
                  },
                  "end": {
                    "line": 87,
                    "column": 1
                  }
                }
              },
              "generator": false,
              "expression": false,
              "range": [
                2405,
                3282
              ],
              "loc": {
                "start": {
                  "line": 61,
                  "column": 27
                },
                "end": {
                  "line": 87,
                  "column": 1
                }
              }
            },
            "arguments": [
              {
                "type": "Identifier",
                "name": "Subscriber",
                "range": [
                  3283,
                  3293
                ],
                "loc": {
                  "start": {
                    "line": 87,
                    "column": 2
                  },
                  "end": {
                    "line": 87,
                    "column": 12
                  }
                }
              }
            ],
            "range": [
              2405,
              3294
            ],
            "loc": {
              "start": {
                "line": 61,
                "column": 27
              },
              "end": {
                "line": 87,
                "column": 13
              }
            }
          },
          "range": [
            2382,
            3295
          ],
          "loc": {
            "start": {
              "line": 61,
              "column": 4
            },
            "end": {
              "line": 87,
              "column": 14
            }
          }
        }
      ],
      "kind": "var",
      "range": [
        2378,
        3296
      ],
      "loc": {
        "start": {
          "line": 61,
          "column": 0
        },
        "end": {
          "line": 87,
          "column": 15
        }
      },
      "leadingComments": [
        {
          "type": "Block",
          "value": "*\n * We need this JSDoc comment for affecting ESDoc.\n * @ignore\n * @extends {Ignored}\n ",
          "range": [
            2286,
            2377
          ],
          "loc": {
            "start": {
              "line": 56,
              "column": 0
            },
            "end": {
              "line": 60,
              "column": 3
            }
          }
        }
      ],
      "trailingComments": [
        {
          "type": "Line",
          "value": "# sourceMappingURL=elementAt.js.map",
          "range": [
            3297,
            3334
          ],
          "loc": {
            "start": {
              "line": 88,
              "column": 0
            },
            "end": {
              "line": 88,
              "column": 37
            }
          }
        }
      ]
    }
  ],
  "sourceType": "module",
  "range": [
    0,
    3296
  ],
  "loc": {
    "start": {
      "line": 1,
      "column": 0
    },
    "end": {
      "line": 87,
      "column": 15
    }
  },
  "comments": [
    {
      "type": "Block",
      "value": "*\n * Emits the single value at the specified `index` in a sequence of emissions\n * from the source Observable.\n *\n * <span class=\"informal\">Emits only the i-th value, then completes.</span>\n *\n * <img src=\"./img/elementAt.png\" width=\"100%\">\n *\n * `elementAt` returns an Observable that emits the item at the specified\n * `index` in the source Observable, or a default value if that `index` is out\n * of range and the `default` argument is provided. If the `default` argument is\n * not given and the `index` is out of range, the output Observable will emit an\n * `ArgumentOutOfRangeError` error.\n *\n * @example <caption>Emit only the third click event</caption>\n * var clicks = Rx.Observable.fromEvent(document, 'click');\n * var result = clicks.elementAt(2);\n * result.subscribe(x => console.log(x));\n *\n * @see {@link first}\n * @see {@link last}\n * @see {@link skip}\n * @see {@link single}\n * @see {@link take}\n *\n * @throws {ArgumentOutOfRangeError} When using `elementAt(i)`, it delivers an\n * ArgumentOutOrRangeError to the Observer's `error` callback if `i < 0` or the\n * Observable has completed before emitting the i-th `next` notification.\n *\n * @param {number} index Is the number `i` for the i-th source emission that has\n * happened since the subscription, starting from the number `0`.\n * @param {T} [defaultValue] The default value returned for missing indices.\n * @return {Observable} An Observable that emits a single item, if it is found.\n * Otherwise, will emit the default value if given. If not, then emits an error.\n * @method elementAt\n * @owner Observable\n ",
      "range": [
        119,
        1701
      ],
      "loc": {
        "start": {
          "line": 3,
          "column": 0
        },
        "end": {
          "line": 39,
          "column": 3
        }
      }
    },
    {
      "type": "Block",
      "value": "*\n * We need this JSDoc comment for affecting ESDoc.\n * @ignore\n * @extends {Ignored}\n ",
      "range": [
        2286,
        2377
      ],
      "loc": {
        "start": {
          "line": 56,
          "column": 0
        },
        "end": {
          "line": 60,
          "column": 3
        }
      }
    },
    {
      "type": "Line",
      "value": "# sourceMappingURL=elementAt.js.map",
      "range": [
        3297,
        3334
      ],
      "loc": {
        "start": {
          "line": 88,
          "column": 0
        },
        "end": {
          "line": 88,
          "column": 37
        }
      }
    }
  ]
}