{
  "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
        }
      },
      "trailingComments": [
        {
          "type": "Block",
          "value": "*\n * Applies a given `project` function to each value emitted by the source\n * Observable, and emits the resulting values as an Observable.\n *\n * <span class=\"informal\">Like [Array.prototype.map()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map),\n * it passes each source value through a transformation function to get\n * corresponding output values.</span>\n *\n * <img src=\"./img/map.png\" width=\"100%\">\n *\n * Similar to the well known `Array.prototype.map` function, this operator\n * applies a projection to each value and emits that projection in the output\n * Observable.\n *\n * @example <caption>Map every every click to the clientX position of that click</caption>\n * var clicks = Rx.Observable.fromEvent(document, 'click');\n * var positions = clicks.map(ev => ev.clientX);\n * positions.subscribe(x => console.log(x));\n *\n * @see {@link mapTo}\n * @see {@link pluck}\n *\n * @param {function(value: T, index: number): R} project The function to apply\n * to each `value` emitted by the source Observable. The `index` parameter is\n * the number `i` for the i-th emission that has happened since the\n * subscription, starting from the number `0`.\n * @param {any} [thisArg] An optional argument to define what `this` is in the\n * `project` function.\n * @return {Observable<R>} An Observable that emits the values from the source\n * Observable transformed by the given `project` function.\n * @method map\n * @owner Observable\n ",
          "range": [
            44,
            1513
          ],
          "loc": {
            "start": {
              "line": 2,
              "column": 0
            },
            "end": {
              "line": 34,
              "column": 3
            }
          }
        }
      ]
    },
    {
      "type": "ExportNamedDeclaration",
      "declaration": {
        "type": "FunctionDeclaration",
        "id": {
          "type": "Identifier",
          "name": "map",
          "range": [
            1530,
            1533
          ],
          "loc": {
            "start": {
              "line": 35,
              "column": 16
            },
            "end": {
              "line": 35,
              "column": 19
            }
          }
        },
        "params": [
          {
            "type": "Identifier",
            "name": "project",
            "range": [
              1534,
              1541
            ],
            "loc": {
              "start": {
                "line": 35,
                "column": 20
              },
              "end": {
                "line": 35,
                "column": 27
              }
            }
          },
          {
            "type": "Identifier",
            "name": "thisArg",
            "range": [
              1543,
              1550
            ],
            "loc": {
              "start": {
                "line": 35,
                "column": 29
              },
              "end": {
                "line": 35,
                "column": 36
              }
            }
          }
        ],
        "body": {
          "type": "BlockStatement",
          "body": [
            {
              "type": "IfStatement",
              "test": {
                "type": "BinaryExpression",
                "operator": "!==",
                "left": {
                  "type": "UnaryExpression",
                  "operator": "typeof",
                  "argument": {
                    "type": "Identifier",
                    "name": "project",
                    "range": [
                      1569,
                      1576
                    ],
                    "loc": {
                      "start": {
                        "line": 36,
                        "column": 15
                      },
                      "end": {
                        "line": 36,
                        "column": 22
                      }
                    }
                  },
                  "prefix": true,
                  "range": [
                    1562,
                    1576
                  ],
                  "loc": {
                    "start": {
                      "line": 36,
                      "column": 8
                    },
                    "end": {
                      "line": 36,
                      "column": 22
                    }
                  }
                },
                "right": {
                  "type": "Literal",
                  "value": "function",
                  "raw": "'function'",
                  "range": [
                    1581,
                    1591
                  ],
                  "loc": {
                    "start": {
                      "line": 36,
                      "column": 27
                    },
                    "end": {
                      "line": 36,
                      "column": 37
                    }
                  }
                },
                "range": [
                  1562,
                  1591
                ],
                "loc": {
                  "start": {
                    "line": 36,
                    "column": 8
                  },
                  "end": {
                    "line": 36,
                    "column": 37
                  }
                }
              },
              "consequent": {
                "type": "BlockStatement",
                "body": [
                  {
                    "type": "ThrowStatement",
                    "argument": {
                      "type": "NewExpression",
                      "callee": {
                        "type": "Identifier",
                        "name": "TypeError",
                        "range": [
                          1613,
                          1622
                        ],
                        "loc": {
                          "start": {
                            "line": 37,
                            "column": 18
                          },
                          "end": {
                            "line": 37,
                            "column": 27
                          }
                        }
                      },
                      "arguments": [
                        {
                          "type": "Literal",
                          "value": "argument is not a function. Are you looking for `mapTo()`?",
                          "raw": "'argument is not a function. Are you looking for `mapTo()`?'",
                          "range": [
                            1623,
                            1683
                          ],
                          "loc": {
                            "start": {
                              "line": 37,
                              "column": 28
                            },
                            "end": {
                              "line": 37,
                              "column": 88
                            }
                          }
                        }
                      ],
                      "range": [
                        1609,
                        1684
                      ],
                      "loc": {
                        "start": {
                          "line": 37,
                          "column": 14
                        },
                        "end": {
                          "line": 37,
                          "column": 89
                        }
                      }
                    },
                    "range": [
                      1603,
                      1685
                    ],
                    "loc": {
                      "start": {
                        "line": 37,
                        "column": 8
                      },
                      "end": {
                        "line": 37,
                        "column": 90
                      }
                    }
                  }
                ],
                "range": [
                  1593,
                  1691
                ],
                "loc": {
                  "start": {
                    "line": 36,
                    "column": 39
                  },
                  "end": {
                    "line": 38,
                    "column": 5
                  }
                }
              },
              "alternate": null,
              "range": [
                1558,
                1691
              ],
              "loc": {
                "start": {
                  "line": 36,
                  "column": 4
                },
                "end": {
                  "line": 38,
                  "column": 5
                }
              }
            },
            {
              "type": "ReturnStatement",
              "argument": {
                "type": "CallExpression",
                "callee": {
                  "type": "MemberExpression",
                  "computed": false,
                  "object": {
                    "type": "ThisExpression",
                    "range": [
                      1703,
                      1707
                    ],
                    "loc": {
                      "start": {
                        "line": 39,
                        "column": 11
                      },
                      "end": {
                        "line": 39,
                        "column": 15
                      }
                    }
                  },
                  "property": {
                    "type": "Identifier",
                    "name": "lift",
                    "range": [
                      1708,
                      1712
                    ],
                    "loc": {
                      "start": {
                        "line": 39,
                        "column": 16
                      },
                      "end": {
                        "line": 39,
                        "column": 20
                      }
                    }
                  },
                  "range": [
                    1703,
                    1712
                  ],
                  "loc": {
                    "start": {
                      "line": 39,
                      "column": 11
                    },
                    "end": {
                      "line": 39,
                      "column": 20
                    }
                  }
                },
                "arguments": [
                  {
                    "type": "NewExpression",
                    "callee": {
                      "type": "Identifier",
                      "name": "MapOperator",
                      "range": [
                        1717,
                        1728
                      ],
                      "loc": {
                        "start": {
                          "line": 39,
                          "column": 25
                        },
                        "end": {
                          "line": 39,
                          "column": 36
                        }
                      }
                    },
                    "arguments": [
                      {
                        "type": "Identifier",
                        "name": "project",
                        "range": [
                          1729,
                          1736
                        ],
                        "loc": {
                          "start": {
                            "line": 39,
                            "column": 37
                          },
                          "end": {
                            "line": 39,
                            "column": 44
                          }
                        }
                      },
                      {
                        "type": "Identifier",
                        "name": "thisArg",
                        "range": [
                          1738,
                          1745
                        ],
                        "loc": {
                          "start": {
                            "line": 39,
                            "column": 46
                          },
                          "end": {
                            "line": 39,
                            "column": 53
                          }
                        }
                      }
                    ],
                    "range": [
                      1713,
                      1746
                    ],
                    "loc": {
                      "start": {
                        "line": 39,
                        "column": 21
                      },
                      "end": {
                        "line": 39,
                        "column": 54
                      }
                    }
                  }
                ],
                "range": [
                  1703,
                  1747
                ],
                "loc": {
                  "start": {
                    "line": 39,
                    "column": 11
                  },
                  "end": {
                    "line": 39,
                    "column": 55
                  }
                }
              },
              "range": [
                1696,
                1748
              ],
              "loc": {
                "start": {
                  "line": 39,
                  "column": 4
                },
                "end": {
                  "line": 39,
                  "column": 56
                }
              }
            }
          ],
          "range": [
            1552,
            1750
          ],
          "loc": {
            "start": {
              "line": 35,
              "column": 38
            },
            "end": {
              "line": 40,
              "column": 1
            }
          }
        },
        "generator": false,
        "expression": false,
        "range": [
          1521,
          1750
        ],
        "loc": {
          "start": {
            "line": 35,
            "column": 7
          },
          "end": {
            "line": 40,
            "column": 1
          }
        },
        "leadingComments": [
          {
            "type": "Block",
            "value": "*\n * Applies a given `project` function to each value emitted by the source\n * Observable, and emits the resulting values as an Observable.\n *\n * <span class=\"informal\">Like [Array.prototype.map()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map),\n * it passes each source value through a transformation function to get\n * corresponding output values.</span>\n *\n * <img src=\"./img/map.png\" width=\"100%\">\n *\n * Similar to the well known `Array.prototype.map` function, this operator\n * applies a projection to each value and emits that projection in the output\n * Observable.\n *\n * @example <caption>Map every every click to the clientX position of that click</caption>\n * var clicks = Rx.Observable.fromEvent(document, 'click');\n * var positions = clicks.map(ev => ev.clientX);\n * positions.subscribe(x => console.log(x));\n *\n * @see {@link mapTo}\n * @see {@link pluck}\n *\n * @param {function(value: T, index: number): R} project The function to apply\n * to each `value` emitted by the source Observable. The `index` parameter is\n * the number `i` for the i-th emission that has happened since the\n * subscription, starting from the number `0`.\n * @param {any} [thisArg] An optional argument to define what `this` is in the\n * `project` function.\n * @return {Observable<R>} An Observable that emits the values from the source\n * Observable transformed by the given `project` function.\n * @method map\n * @owner Observable\n ",
            "range": [
              44,
              1513
            ],
            "loc": {
              "start": {
                "line": 2,
                "column": 0
              },
              "end": {
                "line": 34,
                "column": 3
              }
            }
          }
        ],
        "trailingComments": []
      },
      "specifiers": [],
      "source": null,
      "range": [
        1514,
        1750
      ],
      "loc": {
        "start": {
          "line": 35,
          "column": 0
        },
        "end": {
          "line": 40,
          "column": 1
        }
      },
      "leadingComments": [
        {
          "type": "Block",
          "value": "*\n * Applies a given `project` function to each value emitted by the source\n * Observable, and emits the resulting values as an Observable.\n *\n * <span class=\"informal\">Like [Array.prototype.map()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map),\n * it passes each source value through a transformation function to get\n * corresponding output values.</span>\n *\n * <img src=\"./img/map.png\" width=\"100%\">\n *\n * Similar to the well known `Array.prototype.map` function, this operator\n * applies a projection to each value and emits that projection in the output\n * Observable.\n *\n * @example <caption>Map every every click to the clientX position of that click</caption>\n * var clicks = Rx.Observable.fromEvent(document, 'click');\n * var positions = clicks.map(ev => ev.clientX);\n * positions.subscribe(x => console.log(x));\n *\n * @see {@link mapTo}\n * @see {@link pluck}\n *\n * @param {function(value: T, index: number): R} project The function to apply\n * to each `value` emitted by the source Observable. The `index` parameter is\n * the number `i` for the i-th emission that has happened since the\n * subscription, starting from the number `0`.\n * @param {any} [thisArg] An optional argument to define what `this` is in the\n * `project` function.\n * @return {Observable<R>} An Observable that emits the values from the source\n * Observable transformed by the given `project` function.\n * @method map\n * @owner Observable\n ",
          "range": [
            44,
            1513
          ],
          "loc": {
            "start": {
              "line": 2,
              "column": 0
            },
            "end": {
              "line": 34,
              "column": 3
            }
          }
        }
      ]
    },
    {
      "type": "ExportNamedDeclaration",
      "declaration": {
        "type": "VariableDeclaration",
        "declarations": [
          {
            "type": "VariableDeclarator",
            "id": {
              "type": "Identifier",
              "name": "MapOperator",
              "range": [
                1762,
                1773
              ],
              "loc": {
                "start": {
                  "line": 41,
                  "column": 11
                },
                "end": {
                  "line": 41,
                  "column": 22
                }
              }
            },
            "init": {
              "type": "CallExpression",
              "callee": {
                "type": "FunctionExpression",
                "id": null,
                "params": [],
                "body": {
                  "type": "BlockStatement",
                  "body": [
                    {
                      "type": "FunctionDeclaration",
                      "id": {
                        "type": "Identifier",
                        "name": "MapOperator",
                        "range": [
                          1804,
                          1815
                        ],
                        "loc": {
                          "start": {
                            "line": 42,
                            "column": 13
                          },
                          "end": {
                            "line": 42,
                            "column": 24
                          }
                        }
                      },
                      "params": [
                        {
                          "type": "Identifier",
                          "name": "project",
                          "range": [
                            1816,
                            1823
                          ],
                          "loc": {
                            "start": {
                              "line": 42,
                              "column": 25
                            },
                            "end": {
                              "line": 42,
                              "column": 32
                            }
                          }
                        },
                        {
                          "type": "Identifier",
                          "name": "thisArg",
                          "range": [
                            1825,
                            1832
                          ],
                          "loc": {
                            "start": {
                              "line": 42,
                              "column": 34
                            },
                            "end": {
                              "line": 42,
                              "column": 41
                            }
                          }
                        }
                      ],
                      "body": {
                        "type": "BlockStatement",
                        "body": [
                          {
                            "type": "ExpressionStatement",
                            "expression": {
                              "type": "AssignmentExpression",
                              "operator": "=",
                              "left": {
                                "type": "MemberExpression",
                                "computed": false,
                                "object": {
                                  "type": "ThisExpression",
                                  "range": [
                                    1844,
                                    1848
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 43,
                                      "column": 8
                                    },
                                    "end": {
                                      "line": 43,
                                      "column": 12
                                    }
                                  }
                                },
                                "property": {
                                  "type": "Identifier",
                                  "name": "project",
                                  "range": [
                                    1849,
                                    1856
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 43,
                                      "column": 13
                                    },
                                    "end": {
                                      "line": 43,
                                      "column": 20
                                    }
                                  }
                                },
                                "range": [
                                  1844,
                                  1856
                                ],
                                "loc": {
                                  "start": {
                                    "line": 43,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 43,
                                    "column": 20
                                  }
                                }
                              },
                              "right": {
                                "type": "Identifier",
                                "name": "project",
                                "range": [
                                  1859,
                                  1866
                                ],
                                "loc": {
                                  "start": {
                                    "line": 43,
                                    "column": 23
                                  },
                                  "end": {
                                    "line": 43,
                                    "column": 30
                                  }
                                }
                              },
                              "range": [
                                1844,
                                1866
                              ],
                              "loc": {
                                "start": {
                                  "line": 43,
                                  "column": 8
                                },
                                "end": {
                                  "line": 43,
                                  "column": 30
                                }
                              }
                            },
                            "range": [
                              1844,
                              1867
                            ],
                            "loc": {
                              "start": {
                                "line": 43,
                                "column": 8
                              },
                              "end": {
                                "line": 43,
                                "column": 31
                              }
                            }
                          },
                          {
                            "type": "ExpressionStatement",
                            "expression": {
                              "type": "AssignmentExpression",
                              "operator": "=",
                              "left": {
                                "type": "MemberExpression",
                                "computed": false,
                                "object": {
                                  "type": "ThisExpression",
                                  "range": [
                                    1876,
                                    1880
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 44,
                                      "column": 8
                                    },
                                    "end": {
                                      "line": 44,
                                      "column": 12
                                    }
                                  }
                                },
                                "property": {
                                  "type": "Identifier",
                                  "name": "thisArg",
                                  "range": [
                                    1881,
                                    1888
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 44,
                                      "column": 13
                                    },
                                    "end": {
                                      "line": 44,
                                      "column": 20
                                    }
                                  }
                                },
                                "range": [
                                  1876,
                                  1888
                                ],
                                "loc": {
                                  "start": {
                                    "line": 44,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 44,
                                    "column": 20
                                  }
                                }
                              },
                              "right": {
                                "type": "Identifier",
                                "name": "thisArg",
                                "range": [
                                  1891,
                                  1898
                                ],
                                "loc": {
                                  "start": {
                                    "line": 44,
                                    "column": 23
                                  },
                                  "end": {
                                    "line": 44,
                                    "column": 30
                                  }
                                }
                              },
                              "range": [
                                1876,
                                1898
                              ],
                              "loc": {
                                "start": {
                                  "line": 44,
                                  "column": 8
                                },
                                "end": {
                                  "line": 44,
                                  "column": 30
                                }
                              }
                            },
                            "range": [
                              1876,
                              1899
                            ],
                            "loc": {
                              "start": {
                                "line": 44,
                                "column": 8
                              },
                              "end": {
                                "line": 44,
                                "column": 31
                              }
                            }
                          }
                        ],
                        "range": [
                          1834,
                          1905
                        ],
                        "loc": {
                          "start": {
                            "line": 42,
                            "column": 43
                          },
                          "end": {
                            "line": 45,
                            "column": 5
                          }
                        }
                      },
                      "generator": false,
                      "expression": false,
                      "range": [
                        1795,
                        1905
                      ],
                      "loc": {
                        "start": {
                          "line": 42,
                          "column": 4
                        },
                        "end": {
                          "line": 45,
                          "column": 5
                        }
                      }
                    },
                    {
                      "type": "ExpressionStatement",
                      "expression": {
                        "type": "AssignmentExpression",
                        "operator": "=",
                        "left": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "MemberExpression",
                            "computed": false,
                            "object": {
                              "type": "Identifier",
                              "name": "MapOperator",
                              "range": [
                                1910,
                                1921
                              ],
                              "loc": {
                                "start": {
                                  "line": 46,
                                  "column": 4
                                },
                                "end": {
                                  "line": 46,
                                  "column": 15
                                }
                              }
                            },
                            "property": {
                              "type": "Identifier",
                              "name": "prototype",
                              "range": [
                                1922,
                                1931
                              ],
                              "loc": {
                                "start": {
                                  "line": 46,
                                  "column": 16
                                },
                                "end": {
                                  "line": 46,
                                  "column": 25
                                }
                              }
                            },
                            "range": [
                              1910,
                              1931
                            ],
                            "loc": {
                              "start": {
                                "line": 46,
                                "column": 4
                              },
                              "end": {
                                "line": 46,
                                "column": 25
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "call",
                            "range": [
                              1932,
                              1936
                            ],
                            "loc": {
                              "start": {
                                "line": 46,
                                "column": 26
                              },
                              "end": {
                                "line": 46,
                                "column": 30
                              }
                            }
                          },
                          "range": [
                            1910,
                            1936
                          ],
                          "loc": {
                            "start": {
                              "line": 46,
                              "column": 4
                            },
                            "end": {
                              "line": 46,
                              "column": 30
                            }
                          }
                        },
                        "right": {
                          "type": "FunctionExpression",
                          "id": null,
                          "params": [
                            {
                              "type": "Identifier",
                              "name": "subscriber",
                              "range": [
                                1949,
                                1959
                              ],
                              "loc": {
                                "start": {
                                  "line": 46,
                                  "column": 43
                                },
                                "end": {
                                  "line": 46,
                                  "column": 53
                                }
                              }
                            },
                            {
                              "type": "Identifier",
                              "name": "source",
                              "range": [
                                1961,
                                1967
                              ],
                              "loc": {
                                "start": {
                                  "line": 46,
                                  "column": 55
                                },
                                "end": {
                                  "line": 46,
                                  "column": 61
                                }
                              }
                            }
                          ],
                          "body": {
                            "type": "BlockStatement",
                            "body": [
                              {
                                "type": "ReturnStatement",
                                "argument": {
                                  "type": "CallExpression",
                                  "callee": {
                                    "type": "MemberExpression",
                                    "computed": false,
                                    "object": {
                                      "type": "Identifier",
                                      "name": "source",
                                      "range": [
                                        1986,
                                        1992
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 47,
                                          "column": 15
                                        },
                                        "end": {
                                          "line": 47,
                                          "column": 21
                                        }
                                      }
                                    },
                                    "property": {
                                      "type": "Identifier",
                                      "name": "_subscribe",
                                      "range": [
                                        1993,
                                        2003
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 47,
                                          "column": 22
                                        },
                                        "end": {
                                          "line": 47,
                                          "column": 32
                                        }
                                      }
                                    },
                                    "range": [
                                      1986,
                                      2003
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 47,
                                        "column": 15
                                      },
                                      "end": {
                                        "line": 47,
                                        "column": 32
                                      }
                                    }
                                  },
                                  "arguments": [
                                    {
                                      "type": "NewExpression",
                                      "callee": {
                                        "type": "Identifier",
                                        "name": "MapSubscriber",
                                        "range": [
                                          2008,
                                          2021
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 47,
                                            "column": 37
                                          },
                                          "end": {
                                            "line": 47,
                                            "column": 50
                                          }
                                        }
                                      },
                                      "arguments": [
                                        {
                                          "type": "Identifier",
                                          "name": "subscriber",
                                          "range": [
                                            2022,
                                            2032
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 47,
                                              "column": 51
                                            },
                                            "end": {
                                              "line": 47,
                                              "column": 61
                                            }
                                          }
                                        },
                                        {
                                          "type": "MemberExpression",
                                          "computed": false,
                                          "object": {
                                            "type": "ThisExpression",
                                            "range": [
                                              2034,
                                              2038
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 47,
                                                "column": 63
                                              },
                                              "end": {
                                                "line": 47,
                                                "column": 67
                                              }
                                            }
                                          },
                                          "property": {
                                            "type": "Identifier",
                                            "name": "project",
                                            "range": [
                                              2039,
                                              2046
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 47,
                                                "column": 68
                                              },
                                              "end": {
                                                "line": 47,
                                                "column": 75
                                              }
                                            }
                                          },
                                          "range": [
                                            2034,
                                            2046
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 47,
                                              "column": 63
                                            },
                                            "end": {
                                              "line": 47,
                                              "column": 75
                                            }
                                          }
                                        },
                                        {
                                          "type": "MemberExpression",
                                          "computed": false,
                                          "object": {
                                            "type": "ThisExpression",
                                            "range": [
                                              2048,
                                              2052
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 47,
                                                "column": 77
                                              },
                                              "end": {
                                                "line": 47,
                                                "column": 81
                                              }
                                            }
                                          },
                                          "property": {
                                            "type": "Identifier",
                                            "name": "thisArg",
                                            "range": [
                                              2053,
                                              2060
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 47,
                                                "column": 82
                                              },
                                              "end": {
                                                "line": 47,
                                                "column": 89
                                              }
                                            }
                                          },
                                          "range": [
                                            2048,
                                            2060
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 47,
                                              "column": 77
                                            },
                                            "end": {
                                              "line": 47,
                                              "column": 89
                                            }
                                          }
                                        }
                                      ],
                                      "range": [
                                        2004,
                                        2061
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 47,
                                          "column": 33
                                        },
                                        "end": {
                                          "line": 47,
                                          "column": 90
                                        }
                                      }
                                    }
                                  ],
                                  "range": [
                                    1986,
                                    2062
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 47,
                                      "column": 15
                                    },
                                    "end": {
                                      "line": 47,
                                      "column": 91
                                    }
                                  }
                                },
                                "range": [
                                  1979,
                                  2063
                                ],
                                "loc": {
                                  "start": {
                                    "line": 47,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 47,
                                    "column": 92
                                  }
                                }
                              }
                            ],
                            "range": [
                              1969,
                              2069
                            ],
                            "loc": {
                              "start": {
                                "line": 46,
                                "column": 63
                              },
                              "end": {
                                "line": 48,
                                "column": 5
                              }
                            }
                          },
                          "generator": false,
                          "expression": false,
                          "range": [
                            1939,
                            2069
                          ],
                          "loc": {
                            "start": {
                              "line": 46,
                              "column": 33
                            },
                            "end": {
                              "line": 48,
                              "column": 5
                            }
                          }
                        },
                        "range": [
                          1910,
                          2069
                        ],
                        "loc": {
                          "start": {
                            "line": 46,
                            "column": 4
                          },
                          "end": {
                            "line": 48,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        1910,
                        2070
                      ],
                      "loc": {
                        "start": {
                          "line": 46,
                          "column": 4
                        },
                        "end": {
                          "line": 48,
                          "column": 6
                        }
                      }
                    },
                    {
                      "type": "ReturnStatement",
                      "argument": {
                        "type": "Identifier",
                        "name": "MapOperator",
                        "range": [
                          2082,
                          2093
                        ],
                        "loc": {
                          "start": {
                            "line": 49,
                            "column": 11
                          },
                          "end": {
                            "line": 49,
                            "column": 22
                          }
                        }
                      },
                      "range": [
                        2075,
                        2094
                      ],
                      "loc": {
                        "start": {
                          "line": 49,
                          "column": 4
                        },
                        "end": {
                          "line": 49,
                          "column": 23
                        }
                      }
                    }
                  ],
                  "range": [
                    1789,
                    2096
                  ],
                  "loc": {
                    "start": {
                      "line": 41,
                      "column": 38
                    },
                    "end": {
                      "line": 50,
                      "column": 1
                    }
                  }
                },
                "generator": false,
                "expression": false,
                "range": [
                  1777,
                  2096
                ],
                "loc": {
                  "start": {
                    "line": 41,
                    "column": 26
                  },
                  "end": {
                    "line": 50,
                    "column": 1
                  }
                }
              },
              "arguments": [],
              "range": [
                1777,
                2098
              ],
              "loc": {
                "start": {
                  "line": 41,
                  "column": 26
                },
                "end": {
                  "line": 50,
                  "column": 3
                }
              }
            },
            "range": [
              1762,
              2099
            ],
            "loc": {
              "start": {
                "line": 41,
                "column": 11
              },
              "end": {
                "line": 50,
                "column": 4
              }
            }
          }
        ],
        "kind": "var",
        "range": [
          1758,
          2100
        ],
        "loc": {
          "start": {
            "line": 41,
            "column": 7
          },
          "end": {
            "line": 50,
            "column": 5
          }
        },
        "leadingComments": [],
        "trailingComments": [
          {
            "type": "Block",
            "value": "*\n * We need this JSDoc comment for affecting ESDoc.\n * @ignore\n * @extends {Ignored}\n ",
            "range": [
              2101,
              2192
            ],
            "loc": {
              "start": {
                "line": 51,
                "column": 0
              },
              "end": {
                "line": 55,
                "column": 3
              }
            }
          }
        ]
      },
      "specifiers": [],
      "source": null,
      "range": [
        1751,
        2100
      ],
      "loc": {
        "start": {
          "line": 41,
          "column": 0
        },
        "end": {
          "line": 50,
          "column": 5
        }
      },
      "trailingComments": [
        {
          "type": "Block",
          "value": "*\n * We need this JSDoc comment for affecting ESDoc.\n * @ignore\n * @extends {Ignored}\n ",
          "range": [
            2101,
            2192
          ],
          "loc": {
            "start": {
              "line": 51,
              "column": 0
            },
            "end": {
              "line": 55,
              "column": 3
            }
          }
        }
      ]
    },
    {
      "type": "VariableDeclaration",
      "declarations": [
        {
          "type": "VariableDeclarator",
          "id": {
            "type": "Identifier",
            "name": "MapSubscriber",
            "range": [
              2197,
              2210
            ],
            "loc": {
              "start": {
                "line": 56,
                "column": 4
              },
              "end": {
                "line": 56,
                "column": 17
              }
            }
          },
          "init": {
            "type": "CallExpression",
            "callee": {
              "type": "FunctionExpression",
              "id": null,
              "params": [
                {
                  "type": "Identifier",
                  "name": "_super",
                  "range": [
                    2224,
                    2230
                  ],
                  "loc": {
                    "start": {
                      "line": 56,
                      "column": 31
                    },
                    "end": {
                      "line": 56,
                      "column": 37
                    }
                  }
                }
              ],
              "body": {
                "type": "BlockStatement",
                "body": [
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "CallExpression",
                      "callee": {
                        "type": "Identifier",
                        "name": "__extends",
                        "range": [
                          2238,
                          2247
                        ],
                        "loc": {
                          "start": {
                            "line": 57,
                            "column": 4
                          },
                          "end": {
                            "line": 57,
                            "column": 13
                          }
                        }
                      },
                      "arguments": [
                        {
                          "type": "Identifier",
                          "name": "MapSubscriber",
                          "range": [
                            2248,
                            2261
                          ],
                          "loc": {
                            "start": {
                              "line": 57,
                              "column": 14
                            },
                            "end": {
                              "line": 57,
                              "column": 27
                            }
                          }
                        },
                        {
                          "type": "Identifier",
                          "name": "_super",
                          "range": [
                            2263,
                            2269
                          ],
                          "loc": {
                            "start": {
                              "line": 57,
                              "column": 29
                            },
                            "end": {
                              "line": 57,
                              "column": 35
                            }
                          }
                        }
                      ],
                      "range": [
                        2238,
                        2270
                      ],
                      "loc": {
                        "start": {
                          "line": 57,
                          "column": 4
                        },
                        "end": {
                          "line": 57,
                          "column": 36
                        }
                      }
                    },
                    "range": [
                      2238,
                      2271
                    ],
                    "loc": {
                      "start": {
                        "line": 57,
                        "column": 4
                      },
                      "end": {
                        "line": 57,
                        "column": 37
                      }
                    }
                  },
                  {
                    "type": "FunctionDeclaration",
                    "id": {
                      "type": "Identifier",
                      "name": "MapSubscriber",
                      "range": [
                        2285,
                        2298
                      ],
                      "loc": {
                        "start": {
                          "line": 58,
                          "column": 13
                        },
                        "end": {
                          "line": 58,
                          "column": 26
                        }
                      }
                    },
                    "params": [
                      {
                        "type": "Identifier",
                        "name": "destination",
                        "range": [
                          2299,
                          2310
                        ],
                        "loc": {
                          "start": {
                            "line": 58,
                            "column": 27
                          },
                          "end": {
                            "line": 58,
                            "column": 38
                          }
                        }
                      },
                      {
                        "type": "Identifier",
                        "name": "project",
                        "range": [
                          2312,
                          2319
                        ],
                        "loc": {
                          "start": {
                            "line": 58,
                            "column": 40
                          },
                          "end": {
                            "line": 58,
                            "column": 47
                          }
                        }
                      },
                      {
                        "type": "Identifier",
                        "name": "thisArg",
                        "range": [
                          2321,
                          2328
                        ],
                        "loc": {
                          "start": {
                            "line": 58,
                            "column": 49
                          },
                          "end": {
                            "line": 58,
                            "column": 56
                          }
                        }
                      }
                    ],
                    "body": {
                      "type": "BlockStatement",
                      "body": [
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "CallExpression",
                            "callee": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "Identifier",
                                "name": "_super",
                                "range": [
                                  2340,
                                  2346
                                ],
                                "loc": {
                                  "start": {
                                    "line": 59,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 59,
                                    "column": 14
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "call",
                                "range": [
                                  2347,
                                  2351
                                ],
                                "loc": {
                                  "start": {
                                    "line": 59,
                                    "column": 15
                                  },
                                  "end": {
                                    "line": 59,
                                    "column": 19
                                  }
                                }
                              },
                              "range": [
                                2340,
                                2351
                              ],
                              "loc": {
                                "start": {
                                  "line": 59,
                                  "column": 8
                                },
                                "end": {
                                  "line": 59,
                                  "column": 19
                                }
                              }
                            },
                            "arguments": [
                              {
                                "type": "ThisExpression",
                                "range": [
                                  2352,
                                  2356
                                ],
                                "loc": {
                                  "start": {
                                    "line": 59,
                                    "column": 20
                                  },
                                  "end": {
                                    "line": 59,
                                    "column": 24
                                  }
                                }
                              },
                              {
                                "type": "Identifier",
                                "name": "destination",
                                "range": [
                                  2358,
                                  2369
                                ],
                                "loc": {
                                  "start": {
                                    "line": 59,
                                    "column": 26
                                  },
                                  "end": {
                                    "line": 59,
                                    "column": 37
                                  }
                                }
                              }
                            ],
                            "range": [
                              2340,
                              2370
                            ],
                            "loc": {
                              "start": {
                                "line": 59,
                                "column": 8
                              },
                              "end": {
                                "line": 59,
                                "column": 38
                              }
                            }
                          },
                          "range": [
                            2340,
                            2371
                          ],
                          "loc": {
                            "start": {
                              "line": 59,
                              "column": 8
                            },
                            "end": {
                              "line": 59,
                              "column": 39
                            }
                          }
                        },
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "AssignmentExpression",
                            "operator": "=",
                            "left": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  2380,
                                  2384
                                ],
                                "loc": {
                                  "start": {
                                    "line": 60,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 60,
                                    "column": 12
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "project",
                                "range": [
                                  2385,
                                  2392
                                ],
                                "loc": {
                                  "start": {
                                    "line": 60,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 60,
                                    "column": 20
                                  }
                                }
                              },
                              "range": [
                                2380,
                                2392
                              ],
                              "loc": {
                                "start": {
                                  "line": 60,
                                  "column": 8
                                },
                                "end": {
                                  "line": 60,
                                  "column": 20
                                }
                              }
                            },
                            "right": {
                              "type": "Identifier",
                              "name": "project",
                              "range": [
                                2395,
                                2402
                              ],
                              "loc": {
                                "start": {
                                  "line": 60,
                                  "column": 23
                                },
                                "end": {
                                  "line": 60,
                                  "column": 30
                                }
                              }
                            },
                            "range": [
                              2380,
                              2402
                            ],
                            "loc": {
                              "start": {
                                "line": 60,
                                "column": 8
                              },
                              "end": {
                                "line": 60,
                                "column": 30
                              }
                            }
                          },
                          "range": [
                            2380,
                            2403
                          ],
                          "loc": {
                            "start": {
                              "line": 60,
                              "column": 8
                            },
                            "end": {
                              "line": 60,
                              "column": 31
                            }
                          }
                        },
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "AssignmentExpression",
                            "operator": "=",
                            "left": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  2412,
                                  2416
                                ],
                                "loc": {
                                  "start": {
                                    "line": 61,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 61,
                                    "column": 12
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "count",
                                "range": [
                                  2417,
                                  2422
                                ],
                                "loc": {
                                  "start": {
                                    "line": 61,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 61,
                                    "column": 18
                                  }
                                }
                              },
                              "range": [
                                2412,
                                2422
                              ],
                              "loc": {
                                "start": {
                                  "line": 61,
                                  "column": 8
                                },
                                "end": {
                                  "line": 61,
                                  "column": 18
                                }
                              }
                            },
                            "right": {
                              "type": "Literal",
                              "value": 0,
                              "raw": "0",
                              "range": [
                                2425,
                                2426
                              ],
                              "loc": {
                                "start": {
                                  "line": 61,
                                  "column": 21
                                },
                                "end": {
                                  "line": 61,
                                  "column": 22
                                }
                              }
                            },
                            "range": [
                              2412,
                              2426
                            ],
                            "loc": {
                              "start": {
                                "line": 61,
                                "column": 8
                              },
                              "end": {
                                "line": 61,
                                "column": 22
                              }
                            }
                          },
                          "range": [
                            2412,
                            2427
                          ],
                          "loc": {
                            "start": {
                              "line": 61,
                              "column": 8
                            },
                            "end": {
                              "line": 61,
                              "column": 23
                            }
                          }
                        },
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "AssignmentExpression",
                            "operator": "=",
                            "left": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  2436,
                                  2440
                                ],
                                "loc": {
                                  "start": {
                                    "line": 62,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 62,
                                    "column": 12
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "thisArg",
                                "range": [
                                  2441,
                                  2448
                                ],
                                "loc": {
                                  "start": {
                                    "line": 62,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 62,
                                    "column": 20
                                  }
                                }
                              },
                              "range": [
                                2436,
                                2448
                              ],
                              "loc": {
                                "start": {
                                  "line": 62,
                                  "column": 8
                                },
                                "end": {
                                  "line": 62,
                                  "column": 20
                                }
                              }
                            },
                            "right": {
                              "type": "LogicalExpression",
                              "operator": "||",
                              "left": {
                                "type": "Identifier",
                                "name": "thisArg",
                                "range": [
                                  2451,
                                  2458
                                ],
                                "loc": {
                                  "start": {
                                    "line": 62,
                                    "column": 23
                                  },
                                  "end": {
                                    "line": 62,
                                    "column": 30
                                  }
                                }
                              },
                              "right": {
                                "type": "ThisExpression",
                                "range": [
                                  2462,
                                  2466
                                ],
                                "loc": {
                                  "start": {
                                    "line": 62,
                                    "column": 34
                                  },
                                  "end": {
                                    "line": 62,
                                    "column": 38
                                  }
                                }
                              },
                              "range": [
                                2451,
                                2466
                              ],
                              "loc": {
                                "start": {
                                  "line": 62,
                                  "column": 23
                                },
                                "end": {
                                  "line": 62,
                                  "column": 38
                                }
                              }
                            },
                            "range": [
                              2436,
                              2466
                            ],
                            "loc": {
                              "start": {
                                "line": 62,
                                "column": 8
                              },
                              "end": {
                                "line": 62,
                                "column": 38
                              }
                            }
                          },
                          "range": [
                            2436,
                            2467
                          ],
                          "loc": {
                            "start": {
                              "line": 62,
                              "column": 8
                            },
                            "end": {
                              "line": 62,
                              "column": 39
                            }
                          }
                        }
                      ],
                      "range": [
                        2330,
                        2473
                      ],
                      "loc": {
                        "start": {
                          "line": 58,
                          "column": 58
                        },
                        "end": {
                          "line": 63,
                          "column": 5
                        }
                      }
                    },
                    "generator": false,
                    "expression": false,
                    "range": [
                      2276,
                      2473
                    ],
                    "loc": {
                      "start": {
                        "line": 58,
                        "column": 4
                      },
                      "end": {
                        "line": 63,
                        "column": 5
                      }
                    },
                    "trailingComments": [
                      {
                        "type": "Line",
                        "value": " NOTE: This looks unoptimized, but it's actually purposefully NOT",
                        "range": [
                          2478,
                          2545
                        ],
                        "loc": {
                          "start": {
                            "line": 64,
                            "column": 4
                          },
                          "end": {
                            "line": 64,
                            "column": 71
                          }
                        }
                      },
                      {
                        "type": "Line",
                        "value": " using try/catch optimizations.",
                        "range": [
                          2550,
                          2583
                        ],
                        "loc": {
                          "start": {
                            "line": 65,
                            "column": 4
                          },
                          "end": {
                            "line": 65,
                            "column": 37
                          }
                        }
                      }
                    ]
                  },
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "AssignmentExpression",
                      "operator": "=",
                      "left": {
                        "type": "MemberExpression",
                        "computed": false,
                        "object": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "Identifier",
                            "name": "MapSubscriber",
                            "range": [
                              2588,
                              2601
                            ],
                            "loc": {
                              "start": {
                                "line": 66,
                                "column": 4
                              },
                              "end": {
                                "line": 66,
                                "column": 17
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "prototype",
                            "range": [
                              2602,
                              2611
                            ],
                            "loc": {
                              "start": {
                                "line": 66,
                                "column": 18
                              },
                              "end": {
                                "line": 66,
                                "column": 27
                              }
                            }
                          },
                          "range": [
                            2588,
                            2611
                          ],
                          "loc": {
                            "start": {
                              "line": 66,
                              "column": 4
                            },
                            "end": {
                              "line": 66,
                              "column": 27
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "_next",
                          "range": [
                            2612,
                            2617
                          ],
                          "loc": {
                            "start": {
                              "line": 66,
                              "column": 28
                            },
                            "end": {
                              "line": 66,
                              "column": 33
                            }
                          }
                        },
                        "range": [
                          2588,
                          2617
                        ],
                        "loc": {
                          "start": {
                            "line": 66,
                            "column": 4
                          },
                          "end": {
                            "line": 66,
                            "column": 33
                          }
                        }
                      },
                      "right": {
                        "type": "FunctionExpression",
                        "id": null,
                        "params": [
                          {
                            "type": "Identifier",
                            "name": "value",
                            "range": [
                              2630,
                              2635
                            ],
                            "loc": {
                              "start": {
                                "line": 66,
                                "column": 46
                              },
                              "end": {
                                "line": 66,
                                "column": 51
                              }
                            }
                          }
                        ],
                        "body": {
                          "type": "BlockStatement",
                          "body": [
                            {
                              "type": "VariableDeclaration",
                              "declarations": [
                                {
                                  "type": "VariableDeclarator",
                                  "id": {
                                    "type": "Identifier",
                                    "name": "result",
                                    "range": [
                                      2651,
                                      2657
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 67,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 67,
                                        "column": 18
                                      }
                                    }
                                  },
                                  "init": null,
                                  "range": [
                                    2651,
                                    2657
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 67,
                                      "column": 12
                                    },
                                    "end": {
                                      "line": 67,
                                      "column": 18
                                    }
                                  }
                                }
                              ],
                              "kind": "var",
                              "range": [
                                2647,
                                2658
                              ],
                              "loc": {
                                "start": {
                                  "line": 67,
                                  "column": 8
                                },
                                "end": {
                                  "line": 67,
                                  "column": 19
                                }
                              }
                            },
                            {
                              "type": "TryStatement",
                              "block": {
                                "type": "BlockStatement",
                                "body": [
                                  {
                                    "type": "ExpressionStatement",
                                    "expression": {
                                      "type": "AssignmentExpression",
                                      "operator": "=",
                                      "left": {
                                        "type": "Identifier",
                                        "name": "result",
                                        "range": [
                                          2685,
                                          2691
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 69,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 69,
                                            "column": 18
                                          }
                                        }
                                      },
                                      "right": {
                                        "type": "CallExpression",
                                        "callee": {
                                          "type": "MemberExpression",
                                          "computed": false,
                                          "object": {
                                            "type": "MemberExpression",
                                            "computed": false,
                                            "object": {
                                              "type": "ThisExpression",
                                              "range": [
                                                2694,
                                                2698
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 69,
                                                  "column": 21
                                                },
                                                "end": {
                                                  "line": 69,
                                                  "column": 25
                                                }
                                              }
                                            },
                                            "property": {
                                              "type": "Identifier",
                                              "name": "project",
                                              "range": [
                                                2699,
                                                2706
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 69,
                                                  "column": 26
                                                },
                                                "end": {
                                                  "line": 69,
                                                  "column": 33
                                                }
                                              }
                                            },
                                            "range": [
                                              2694,
                                              2706
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 69,
                                                "column": 21
                                              },
                                              "end": {
                                                "line": 69,
                                                "column": 33
                                              }
                                            }
                                          },
                                          "property": {
                                            "type": "Identifier",
                                            "name": "call",
                                            "range": [
                                              2707,
                                              2711
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 69,
                                                "column": 34
                                              },
                                              "end": {
                                                "line": 69,
                                                "column": 38
                                              }
                                            }
                                          },
                                          "range": [
                                            2694,
                                            2711
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 69,
                                              "column": 21
                                            },
                                            "end": {
                                              "line": 69,
                                              "column": 38
                                            }
                                          }
                                        },
                                        "arguments": [
                                          {
                                            "type": "MemberExpression",
                                            "computed": false,
                                            "object": {
                                              "type": "ThisExpression",
                                              "range": [
                                                2712,
                                                2716
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 69,
                                                  "column": 39
                                                },
                                                "end": {
                                                  "line": 69,
                                                  "column": 43
                                                }
                                              }
                                            },
                                            "property": {
                                              "type": "Identifier",
                                              "name": "thisArg",
                                              "range": [
                                                2717,
                                                2724
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 69,
                                                  "column": 44
                                                },
                                                "end": {
                                                  "line": 69,
                                                  "column": 51
                                                }
                                              }
                                            },
                                            "range": [
                                              2712,
                                              2724
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 69,
                                                "column": 39
                                              },
                                              "end": {
                                                "line": 69,
                                                "column": 51
                                              }
                                            }
                                          },
                                          {
                                            "type": "Identifier",
                                            "name": "value",
                                            "range": [
                                              2726,
                                              2731
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 69,
                                                "column": 53
                                              },
                                              "end": {
                                                "line": 69,
                                                "column": 58
                                              }
                                            }
                                          },
                                          {
                                            "type": "UpdateExpression",
                                            "operator": "++",
                                            "argument": {
                                              "type": "MemberExpression",
                                              "computed": false,
                                              "object": {
                                                "type": "ThisExpression",
                                                "range": [
                                                  2733,
                                                  2737
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 69,
                                                    "column": 60
                                                  },
                                                  "end": {
                                                    "line": 69,
                                                    "column": 64
                                                  }
                                                }
                                              },
                                              "property": {
                                                "type": "Identifier",
                                                "name": "count",
                                                "range": [
                                                  2738,
                                                  2743
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 69,
                                                    "column": 65
                                                  },
                                                  "end": {
                                                    "line": 69,
                                                    "column": 70
                                                  }
                                                }
                                              },
                                              "range": [
                                                2733,
                                                2743
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 69,
                                                  "column": 60
                                                },
                                                "end": {
                                                  "line": 69,
                                                  "column": 70
                                                }
                                              }
                                            },
                                            "prefix": false,
                                            "range": [
                                              2733,
                                              2745
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 69,
                                                "column": 60
                                              },
                                              "end": {
                                                "line": 69,
                                                "column": 72
                                              }
                                            }
                                          }
                                        ],
                                        "range": [
                                          2694,
                                          2746
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 69,
                                            "column": 21
                                          },
                                          "end": {
                                            "line": 69,
                                            "column": 73
                                          }
                                        }
                                      },
                                      "range": [
                                        2685,
                                        2746
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 69,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 69,
                                          "column": 73
                                        }
                                      }
                                    },
                                    "range": [
                                      2685,
                                      2747
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 69,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 69,
                                        "column": 74
                                      }
                                    }
                                  }
                                ],
                                "range": [
                                  2671,
                                  2757
                                ],
                                "loc": {
                                  "start": {
                                    "line": 68,
                                    "column": 12
                                  },
                                  "end": {
                                    "line": 70,
                                    "column": 9
                                  }
                                }
                              },
                              "handler": {
                                "type": "CatchClause",
                                "param": {
                                  "type": "Identifier",
                                  "name": "err",
                                  "range": [
                                    2773,
                                    2776
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 71,
                                      "column": 15
                                    },
                                    "end": {
                                      "line": 71,
                                      "column": 18
                                    }
                                  }
                                },
                                "body": {
                                  "type": "BlockStatement",
                                  "body": [
                                    {
                                      "type": "ExpressionStatement",
                                      "expression": {
                                        "type": "CallExpression",
                                        "callee": {
                                          "type": "MemberExpression",
                                          "computed": false,
                                          "object": {
                                            "type": "MemberExpression",
                                            "computed": false,
                                            "object": {
                                              "type": "ThisExpression",
                                              "range": [
                                                2792,
                                                2796
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 72,
                                                  "column": 12
                                                },
                                                "end": {
                                                  "line": 72,
                                                  "column": 16
                                                }
                                              }
                                            },
                                            "property": {
                                              "type": "Identifier",
                                              "name": "destination",
                                              "range": [
                                                2797,
                                                2808
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 72,
                                                  "column": 17
                                                },
                                                "end": {
                                                  "line": 72,
                                                  "column": 28
                                                }
                                              }
                                            },
                                            "range": [
                                              2792,
                                              2808
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 72,
                                                "column": 12
                                              },
                                              "end": {
                                                "line": 72,
                                                "column": 28
                                              }
                                            }
                                          },
                                          "property": {
                                            "type": "Identifier",
                                            "name": "error",
                                            "range": [
                                              2809,
                                              2814
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 72,
                                                "column": 29
                                              },
                                              "end": {
                                                "line": 72,
                                                "column": 34
                                              }
                                            }
                                          },
                                          "range": [
                                            2792,
                                            2814
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 72,
                                              "column": 12
                                            },
                                            "end": {
                                              "line": 72,
                                              "column": 34
                                            }
                                          }
                                        },
                                        "arguments": [
                                          {
                                            "type": "Identifier",
                                            "name": "err",
                                            "range": [
                                              2815,
                                              2818
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 72,
                                                "column": 35
                                              },
                                              "end": {
                                                "line": 72,
                                                "column": 38
                                              }
                                            }
                                          }
                                        ],
                                        "range": [
                                          2792,
                                          2819
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 72,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 72,
                                            "column": 39
                                          }
                                        }
                                      },
                                      "range": [
                                        2792,
                                        2820
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 72,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 72,
                                          "column": 40
                                        }
                                      }
                                    },
                                    {
                                      "type": "ReturnStatement",
                                      "argument": null,
                                      "range": [
                                        2833,
                                        2840
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 73,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 73,
                                          "column": 19
                                        }
                                      }
                                    }
                                  ],
                                  "range": [
                                    2778,
                                    2850
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 71,
                                      "column": 20
                                    },
                                    "end": {
                                      "line": 74,
                                      "column": 9
                                    }
                                  }
                                },
                                "range": [
                                  2766,
                                  2850
                                ],
                                "loc": {
                                  "start": {
                                    "line": 71,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 74,
                                    "column": 9
                                  }
                                }
                              },
                              "finalizer": null,
                              "range": [
                                2667,
                                2850
                              ],
                              "loc": {
                                "start": {
                                  "line": 68,
                                  "column": 8
                                },
                                "end": {
                                  "line": 74,
                                  "column": 9
                                }
                              }
                            },
                            {
                              "type": "ExpressionStatement",
                              "expression": {
                                "type": "CallExpression",
                                "callee": {
                                  "type": "MemberExpression",
                                  "computed": false,
                                  "object": {
                                    "type": "MemberExpression",
                                    "computed": false,
                                    "object": {
                                      "type": "ThisExpression",
                                      "range": [
                                        2859,
                                        2863
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 75,
                                          "column": 8
                                        },
                                        "end": {
                                          "line": 75,
                                          "column": 12
                                        }
                                      }
                                    },
                                    "property": {
                                      "type": "Identifier",
                                      "name": "destination",
                                      "range": [
                                        2864,
                                        2875
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 75,
                                          "column": 13
                                        },
                                        "end": {
                                          "line": 75,
                                          "column": 24
                                        }
                                      }
                                    },
                                    "range": [
                                      2859,
                                      2875
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 75,
                                        "column": 8
                                      },
                                      "end": {
                                        "line": 75,
                                        "column": 24
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "next",
                                    "range": [
                                      2876,
                                      2880
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 75,
                                        "column": 25
                                      },
                                      "end": {
                                        "line": 75,
                                        "column": 29
                                      }
                                    }
                                  },
                                  "range": [
                                    2859,
                                    2880
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 75,
                                      "column": 8
                                    },
                                    "end": {
                                      "line": 75,
                                      "column": 29
                                    }
                                  }
                                },
                                "arguments": [
                                  {
                                    "type": "Identifier",
                                    "name": "result",
                                    "range": [
                                      2881,
                                      2887
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 75,
                                        "column": 30
                                      },
                                      "end": {
                                        "line": 75,
                                        "column": 36
                                      }
                                    }
                                  }
                                ],
                                "range": [
                                  2859,
                                  2888
                                ],
                                "loc": {
                                  "start": {
                                    "line": 75,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 75,
                                    "column": 37
                                  }
                                }
                              },
                              "range": [
                                2859,
                                2889
                              ],
                              "loc": {
                                "start": {
                                  "line": 75,
                                  "column": 8
                                },
                                "end": {
                                  "line": 75,
                                  "column": 38
                                }
                              }
                            }
                          ],
                          "range": [
                            2637,
                            2895
                          ],
                          "loc": {
                            "start": {
                              "line": 66,
                              "column": 53
                            },
                            "end": {
                              "line": 76,
                              "column": 5
                            }
                          }
                        },
                        "generator": false,
                        "expression": false,
                        "range": [
                          2620,
                          2895
                        ],
                        "loc": {
                          "start": {
                            "line": 66,
                            "column": 36
                          },
                          "end": {
                            "line": 76,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        2588,
                        2895
                      ],
                      "loc": {
                        "start": {
                          "line": 66,
                          "column": 4
                        },
                        "end": {
                          "line": 76,
                          "column": 5
                        }
                      }
                    },
                    "range": [
                      2588,
                      2896
                    ],
                    "loc": {
                      "start": {
                        "line": 66,
                        "column": 4
                      },
                      "end": {
                        "line": 76,
                        "column": 6
                      }
                    },
                    "leadingComments": [
                      {
                        "type": "Line",
                        "value": " NOTE: This looks unoptimized, but it's actually purposefully NOT",
                        "range": [
                          2478,
                          2545
                        ],
                        "loc": {
                          "start": {
                            "line": 64,
                            "column": 4
                          },
                          "end": {
                            "line": 64,
                            "column": 71
                          }
                        }
                      },
                      {
                        "type": "Line",
                        "value": " using try/catch optimizations.",
                        "range": [
                          2550,
                          2583
                        ],
                        "loc": {
                          "start": {
                            "line": 65,
                            "column": 4
                          },
                          "end": {
                            "line": 65,
                            "column": 37
                          }
                        }
                      }
                    ]
                  },
                  {
                    "type": "ReturnStatement",
                    "argument": {
                      "type": "Identifier",
                      "name": "MapSubscriber",
                      "range": [
                        2908,
                        2921
                      ],
                      "loc": {
                        "start": {
                          "line": 77,
                          "column": 11
                        },
                        "end": {
                          "line": 77,
                          "column": 24
                        }
                      }
                    },
                    "range": [
                      2901,
                      2922
                    ],
                    "loc": {
                      "start": {
                        "line": 77,
                        "column": 4
                      },
                      "end": {
                        "line": 77,
                        "column": 25
                      }
                    }
                  }
                ],
                "range": [
                  2232,
                  2924
                ],
                "loc": {
                  "start": {
                    "line": 56,
                    "column": 39
                  },
                  "end": {
                    "line": 78,
                    "column": 1
                  }
                }
              },
              "generator": false,
              "expression": false,
              "range": [
                2214,
                2924
              ],
              "loc": {
                "start": {
                  "line": 56,
                  "column": 21
                },
                "end": {
                  "line": 78,
                  "column": 1
                }
              }
            },
            "arguments": [
              {
                "type": "Identifier",
                "name": "Subscriber",
                "range": [
                  2925,
                  2935
                ],
                "loc": {
                  "start": {
                    "line": 78,
                    "column": 2
                  },
                  "end": {
                    "line": 78,
                    "column": 12
                  }
                }
              }
            ],
            "range": [
              2214,
              2936
            ],
            "loc": {
              "start": {
                "line": 56,
                "column": 21
              },
              "end": {
                "line": 78,
                "column": 13
              }
            }
          },
          "range": [
            2197,
            2937
          ],
          "loc": {
            "start": {
              "line": 56,
              "column": 4
            },
            "end": {
              "line": 78,
              "column": 14
            }
          }
        }
      ],
      "kind": "var",
      "range": [
        2193,
        2938
      ],
      "loc": {
        "start": {
          "line": 56,
          "column": 0
        },
        "end": {
          "line": 78,
          "column": 15
        }
      },
      "leadingComments": [
        {
          "type": "Block",
          "value": "*\n * We need this JSDoc comment for affecting ESDoc.\n * @ignore\n * @extends {Ignored}\n ",
          "range": [
            2101,
            2192
          ],
          "loc": {
            "start": {
              "line": 51,
              "column": 0
            },
            "end": {
              "line": 55,
              "column": 3
            }
          }
        }
      ],
      "trailingComments": [
        {
          "type": "Line",
          "value": "# sourceMappingURL=map.js.map",
          "range": [
            2939,
            2970
          ],
          "loc": {
            "start": {
              "line": 79,
              "column": 0
            },
            "end": {
              "line": 79,
              "column": 31
            }
          }
        }
      ]
    }
  ],
  "sourceType": "module",
  "range": [
    0,
    2938
  ],
  "loc": {
    "start": {
      "line": 1,
      "column": 0
    },
    "end": {
      "line": 78,
      "column": 15
    }
  },
  "comments": [
    {
      "type": "Block",
      "value": "*\n * Applies a given `project` function to each value emitted by the source\n * Observable, and emits the resulting values as an Observable.\n *\n * <span class=\"informal\">Like [Array.prototype.map()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map),\n * it passes each source value through a transformation function to get\n * corresponding output values.</span>\n *\n * <img src=\"./img/map.png\" width=\"100%\">\n *\n * Similar to the well known `Array.prototype.map` function, this operator\n * applies a projection to each value and emits that projection in the output\n * Observable.\n *\n * @example <caption>Map every every click to the clientX position of that click</caption>\n * var clicks = Rx.Observable.fromEvent(document, 'click');\n * var positions = clicks.map(ev => ev.clientX);\n * positions.subscribe(x => console.log(x));\n *\n * @see {@link mapTo}\n * @see {@link pluck}\n *\n * @param {function(value: T, index: number): R} project The function to apply\n * to each `value` emitted by the source Observable. The `index` parameter is\n * the number `i` for the i-th emission that has happened since the\n * subscription, starting from the number `0`.\n * @param {any} [thisArg] An optional argument to define what `this` is in the\n * `project` function.\n * @return {Observable<R>} An Observable that emits the values from the source\n * Observable transformed by the given `project` function.\n * @method map\n * @owner Observable\n ",
      "range": [
        44,
        1513
      ],
      "loc": {
        "start": {
          "line": 2,
          "column": 0
        },
        "end": {
          "line": 34,
          "column": 3
        }
      }
    },
    {
      "type": "Block",
      "value": "*\n * We need this JSDoc comment for affecting ESDoc.\n * @ignore\n * @extends {Ignored}\n ",
      "range": [
        2101,
        2192
      ],
      "loc": {
        "start": {
          "line": 51,
          "column": 0
        },
        "end": {
          "line": 55,
          "column": 3
        }
      }
    },
    {
      "type": "Line",
      "value": " NOTE: This looks unoptimized, but it's actually purposefully NOT",
      "range": [
        2478,
        2545
      ],
      "loc": {
        "start": {
          "line": 64,
          "column": 4
        },
        "end": {
          "line": 64,
          "column": 71
        }
      }
    },
    {
      "type": "Line",
      "value": " using try/catch optimizations.",
      "range": [
        2550,
        2583
      ],
      "loc": {
        "start": {
          "line": 65,
          "column": 4
        },
        "end": {
          "line": 65,
          "column": 37
        }
      }
    },
    {
      "type": "Line",
      "value": "# sourceMappingURL=map.js.map",
      "range": [
        2939,
        2970
      ],
      "loc": {
        "start": {
          "line": 79,
          "column": 0
        },
        "end": {
          "line": 79,
          "column": 31
        }
      }
    }
  ]
}