{
  "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 * Returns an Observable that mirrors the source Observable, resubscribing to it if it calls `error` and the\n * predicate returns true for that specific exception and retry count.\n * If the source Observable calls `error`, this method will resubscribe to the source Observable for a maximum of\n * count resubscriptions (given as a number parameter) rather than propagating the `error` call.\n *\n * <img src=\"./img/retry.png\" width=\"100%\">\n *\n * Any and all items emitted by the source Observable will be emitted by the resulting Observable, even those emitted\n * during failed subscriptions. For example, if an Observable fails at first but emits [1, 2] then succeeds the second\n * time and emits: [1, 2, 3, 4, 5] then the complete stream of emissions and notifications\n * would be: [1, 2, 1, 2, 3, 4, 5, `complete`].\n * @param {number} number of retry attempts before failing.\n * @return {Observable} the source Observable modified with the retry logic.\n * @method retry\n * @owner Observable\n ",
          "range": [
            44,
            1043
          ],
          "loc": {
            "start": {
              "line": 2,
              "column": 0
            },
            "end": {
              "line": 18,
              "column": 3
            }
          }
        }
      ]
    },
    {
      "type": "ExportNamedDeclaration",
      "declaration": {
        "type": "FunctionDeclaration",
        "id": {
          "type": "Identifier",
          "name": "retry",
          "range": [
            1060,
            1065
          ],
          "loc": {
            "start": {
              "line": 19,
              "column": 16
            },
            "end": {
              "line": 19,
              "column": 21
            }
          }
        },
        "params": [
          {
            "type": "Identifier",
            "name": "count",
            "range": [
              1066,
              1071
            ],
            "loc": {
              "start": {
                "line": 19,
                "column": 22
              },
              "end": {
                "line": 19,
                "column": 27
              }
            }
          }
        ],
        "body": {
          "type": "BlockStatement",
          "body": [
            {
              "type": "IfStatement",
              "test": {
                "type": "BinaryExpression",
                "operator": "===",
                "left": {
                  "type": "Identifier",
                  "name": "count",
                  "range": [
                    1083,
                    1088
                  ],
                  "loc": {
                    "start": {
                      "line": 20,
                      "column": 8
                    },
                    "end": {
                      "line": 20,
                      "column": 13
                    }
                  }
                },
                "right": {
                  "type": "UnaryExpression",
                  "operator": "void",
                  "argument": {
                    "type": "Literal",
                    "value": 0,
                    "raw": "0",
                    "range": [
                      1098,
                      1099
                    ],
                    "loc": {
                      "start": {
                        "line": 20,
                        "column": 23
                      },
                      "end": {
                        "line": 20,
                        "column": 24
                      }
                    }
                  },
                  "prefix": true,
                  "range": [
                    1093,
                    1099
                  ],
                  "loc": {
                    "start": {
                      "line": 20,
                      "column": 18
                    },
                    "end": {
                      "line": 20,
                      "column": 24
                    }
                  }
                },
                "range": [
                  1083,
                  1099
                ],
                "loc": {
                  "start": {
                    "line": 20,
                    "column": 8
                  },
                  "end": {
                    "line": 20,
                    "column": 24
                  }
                }
              },
              "consequent": {
                "type": "BlockStatement",
                "body": [
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "AssignmentExpression",
                      "operator": "=",
                      "left": {
                        "type": "Identifier",
                        "name": "count",
                        "range": [
                          1103,
                          1108
                        ],
                        "loc": {
                          "start": {
                            "line": 20,
                            "column": 28
                          },
                          "end": {
                            "line": 20,
                            "column": 33
                          }
                        }
                      },
                      "right": {
                        "type": "UnaryExpression",
                        "operator": "-",
                        "argument": {
                          "type": "Literal",
                          "value": 1,
                          "raw": "1",
                          "range": [
                            1112,
                            1113
                          ],
                          "loc": {
                            "start": {
                              "line": 20,
                              "column": 37
                            },
                            "end": {
                              "line": 20,
                              "column": 38
                            }
                          }
                        },
                        "prefix": true,
                        "range": [
                          1111,
                          1113
                        ],
                        "loc": {
                          "start": {
                            "line": 20,
                            "column": 36
                          },
                          "end": {
                            "line": 20,
                            "column": 38
                          }
                        }
                      },
                      "range": [
                        1103,
                        1113
                      ],
                      "loc": {
                        "start": {
                          "line": 20,
                          "column": 28
                        },
                        "end": {
                          "line": 20,
                          "column": 38
                        }
                      }
                    },
                    "range": [
                      1103,
                      1114
                    ],
                    "loc": {
                      "start": {
                        "line": 20,
                        "column": 28
                      },
                      "end": {
                        "line": 20,
                        "column": 39
                      }
                    }
                  }
                ],
                "range": [
                  1101,
                  1116
                ],
                "loc": {
                  "start": {
                    "line": 20,
                    "column": 26
                  },
                  "end": {
                    "line": 20,
                    "column": 41
                  }
                }
              },
              "alternate": null,
              "range": [
                1079,
                1116
              ],
              "loc": {
                "start": {
                  "line": 20,
                  "column": 4
                },
                "end": {
                  "line": 20,
                  "column": 41
                }
              }
            },
            {
              "type": "ReturnStatement",
              "argument": {
                "type": "CallExpression",
                "callee": {
                  "type": "MemberExpression",
                  "computed": false,
                  "object": {
                    "type": "ThisExpression",
                    "range": [
                      1128,
                      1132
                    ],
                    "loc": {
                      "start": {
                        "line": 21,
                        "column": 11
                      },
                      "end": {
                        "line": 21,
                        "column": 15
                      }
                    }
                  },
                  "property": {
                    "type": "Identifier",
                    "name": "lift",
                    "range": [
                      1133,
                      1137
                    ],
                    "loc": {
                      "start": {
                        "line": 21,
                        "column": 16
                      },
                      "end": {
                        "line": 21,
                        "column": 20
                      }
                    }
                  },
                  "range": [
                    1128,
                    1137
                  ],
                  "loc": {
                    "start": {
                      "line": 21,
                      "column": 11
                    },
                    "end": {
                      "line": 21,
                      "column": 20
                    }
                  }
                },
                "arguments": [
                  {
                    "type": "NewExpression",
                    "callee": {
                      "type": "Identifier",
                      "name": "RetryOperator",
                      "range": [
                        1142,
                        1155
                      ],
                      "loc": {
                        "start": {
                          "line": 21,
                          "column": 25
                        },
                        "end": {
                          "line": 21,
                          "column": 38
                        }
                      }
                    },
                    "arguments": [
                      {
                        "type": "Identifier",
                        "name": "count",
                        "range": [
                          1156,
                          1161
                        ],
                        "loc": {
                          "start": {
                            "line": 21,
                            "column": 39
                          },
                          "end": {
                            "line": 21,
                            "column": 44
                          }
                        }
                      },
                      {
                        "type": "ThisExpression",
                        "range": [
                          1163,
                          1167
                        ],
                        "loc": {
                          "start": {
                            "line": 21,
                            "column": 46
                          },
                          "end": {
                            "line": 21,
                            "column": 50
                          }
                        }
                      }
                    ],
                    "range": [
                      1138,
                      1168
                    ],
                    "loc": {
                      "start": {
                        "line": 21,
                        "column": 21
                      },
                      "end": {
                        "line": 21,
                        "column": 51
                      }
                    }
                  }
                ],
                "range": [
                  1128,
                  1169
                ],
                "loc": {
                  "start": {
                    "line": 21,
                    "column": 11
                  },
                  "end": {
                    "line": 21,
                    "column": 52
                  }
                }
              },
              "range": [
                1121,
                1170
              ],
              "loc": {
                "start": {
                  "line": 21,
                  "column": 4
                },
                "end": {
                  "line": 21,
                  "column": 53
                }
              }
            }
          ],
          "range": [
            1073,
            1172
          ],
          "loc": {
            "start": {
              "line": 19,
              "column": 29
            },
            "end": {
              "line": 22,
              "column": 1
            }
          }
        },
        "generator": false,
        "expression": false,
        "range": [
          1051,
          1172
        ],
        "loc": {
          "start": {
            "line": 19,
            "column": 7
          },
          "end": {
            "line": 22,
            "column": 1
          }
        },
        "leadingComments": [
          {
            "type": "Block",
            "value": "*\n * Returns an Observable that mirrors the source Observable, resubscribing to it if it calls `error` and the\n * predicate returns true for that specific exception and retry count.\n * If the source Observable calls `error`, this method will resubscribe to the source Observable for a maximum of\n * count resubscriptions (given as a number parameter) rather than propagating the `error` call.\n *\n * <img src=\"./img/retry.png\" width=\"100%\">\n *\n * Any and all items emitted by the source Observable will be emitted by the resulting Observable, even those emitted\n * during failed subscriptions. For example, if an Observable fails at first but emits [1, 2] then succeeds the second\n * time and emits: [1, 2, 3, 4, 5] then the complete stream of emissions and notifications\n * would be: [1, 2, 1, 2, 3, 4, 5, `complete`].\n * @param {number} number of retry attempts before failing.\n * @return {Observable} the source Observable modified with the retry logic.\n * @method retry\n * @owner Observable\n ",
            "range": [
              44,
              1043
            ],
            "loc": {
              "start": {
                "line": 2,
                "column": 0
              },
              "end": {
                "line": 18,
                "column": 3
              }
            }
          }
        ],
        "trailingComments": []
      },
      "specifiers": [],
      "source": null,
      "range": [
        1044,
        1172
      ],
      "loc": {
        "start": {
          "line": 19,
          "column": 0
        },
        "end": {
          "line": 22,
          "column": 1
        }
      },
      "leadingComments": [
        {
          "type": "Block",
          "value": "*\n * Returns an Observable that mirrors the source Observable, resubscribing to it if it calls `error` and the\n * predicate returns true for that specific exception and retry count.\n * If the source Observable calls `error`, this method will resubscribe to the source Observable for a maximum of\n * count resubscriptions (given as a number parameter) rather than propagating the `error` call.\n *\n * <img src=\"./img/retry.png\" width=\"100%\">\n *\n * Any and all items emitted by the source Observable will be emitted by the resulting Observable, even those emitted\n * during failed subscriptions. For example, if an Observable fails at first but emits [1, 2] then succeeds the second\n * time and emits: [1, 2, 3, 4, 5] then the complete stream of emissions and notifications\n * would be: [1, 2, 1, 2, 3, 4, 5, `complete`].\n * @param {number} number of retry attempts before failing.\n * @return {Observable} the source Observable modified with the retry logic.\n * @method retry\n * @owner Observable\n ",
          "range": [
            44,
            1043
          ],
          "loc": {
            "start": {
              "line": 2,
              "column": 0
            },
            "end": {
              "line": 18,
              "column": 3
            }
          }
        }
      ]
    },
    {
      "type": "VariableDeclaration",
      "declarations": [
        {
          "type": "VariableDeclarator",
          "id": {
            "type": "Identifier",
            "name": "RetryOperator",
            "range": [
              1177,
              1190
            ],
            "loc": {
              "start": {
                "line": 23,
                "column": 4
              },
              "end": {
                "line": 23,
                "column": 17
              }
            }
          },
          "init": {
            "type": "CallExpression",
            "callee": {
              "type": "FunctionExpression",
              "id": null,
              "params": [],
              "body": {
                "type": "BlockStatement",
                "body": [
                  {
                    "type": "FunctionDeclaration",
                    "id": {
                      "type": "Identifier",
                      "name": "RetryOperator",
                      "range": [
                        1221,
                        1234
                      ],
                      "loc": {
                        "start": {
                          "line": 24,
                          "column": 13
                        },
                        "end": {
                          "line": 24,
                          "column": 26
                        }
                      }
                    },
                    "params": [
                      {
                        "type": "Identifier",
                        "name": "count",
                        "range": [
                          1235,
                          1240
                        ],
                        "loc": {
                          "start": {
                            "line": 24,
                            "column": 27
                          },
                          "end": {
                            "line": 24,
                            "column": 32
                          }
                        }
                      },
                      {
                        "type": "Identifier",
                        "name": "source",
                        "range": [
                          1242,
                          1248
                        ],
                        "loc": {
                          "start": {
                            "line": 24,
                            "column": 34
                          },
                          "end": {
                            "line": 24,
                            "column": 40
                          }
                        }
                      }
                    ],
                    "body": {
                      "type": "BlockStatement",
                      "body": [
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "AssignmentExpression",
                            "operator": "=",
                            "left": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  1260,
                                  1264
                                ],
                                "loc": {
                                  "start": {
                                    "line": 25,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 25,
                                    "column": 12
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "count",
                                "range": [
                                  1265,
                                  1270
                                ],
                                "loc": {
                                  "start": {
                                    "line": 25,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 25,
                                    "column": 18
                                  }
                                }
                              },
                              "range": [
                                1260,
                                1270
                              ],
                              "loc": {
                                "start": {
                                  "line": 25,
                                  "column": 8
                                },
                                "end": {
                                  "line": 25,
                                  "column": 18
                                }
                              }
                            },
                            "right": {
                              "type": "Identifier",
                              "name": "count",
                              "range": [
                                1273,
                                1278
                              ],
                              "loc": {
                                "start": {
                                  "line": 25,
                                  "column": 21
                                },
                                "end": {
                                  "line": 25,
                                  "column": 26
                                }
                              }
                            },
                            "range": [
                              1260,
                              1278
                            ],
                            "loc": {
                              "start": {
                                "line": 25,
                                "column": 8
                              },
                              "end": {
                                "line": 25,
                                "column": 26
                              }
                            }
                          },
                          "range": [
                            1260,
                            1279
                          ],
                          "loc": {
                            "start": {
                              "line": 25,
                              "column": 8
                            },
                            "end": {
                              "line": 25,
                              "column": 27
                            }
                          }
                        },
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "AssignmentExpression",
                            "operator": "=",
                            "left": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  1288,
                                  1292
                                ],
                                "loc": {
                                  "start": {
                                    "line": 26,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 26,
                                    "column": 12
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "source",
                                "range": [
                                  1293,
                                  1299
                                ],
                                "loc": {
                                  "start": {
                                    "line": 26,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 26,
                                    "column": 19
                                  }
                                }
                              },
                              "range": [
                                1288,
                                1299
                              ],
                              "loc": {
                                "start": {
                                  "line": 26,
                                  "column": 8
                                },
                                "end": {
                                  "line": 26,
                                  "column": 19
                                }
                              }
                            },
                            "right": {
                              "type": "Identifier",
                              "name": "source",
                              "range": [
                                1302,
                                1308
                              ],
                              "loc": {
                                "start": {
                                  "line": 26,
                                  "column": 22
                                },
                                "end": {
                                  "line": 26,
                                  "column": 28
                                }
                              }
                            },
                            "range": [
                              1288,
                              1308
                            ],
                            "loc": {
                              "start": {
                                "line": 26,
                                "column": 8
                              },
                              "end": {
                                "line": 26,
                                "column": 28
                              }
                            }
                          },
                          "range": [
                            1288,
                            1309
                          ],
                          "loc": {
                            "start": {
                              "line": 26,
                              "column": 8
                            },
                            "end": {
                              "line": 26,
                              "column": 29
                            }
                          }
                        }
                      ],
                      "range": [
                        1250,
                        1315
                      ],
                      "loc": {
                        "start": {
                          "line": 24,
                          "column": 42
                        },
                        "end": {
                          "line": 27,
                          "column": 5
                        }
                      }
                    },
                    "generator": false,
                    "expression": false,
                    "range": [
                      1212,
                      1315
                    ],
                    "loc": {
                      "start": {
                        "line": 24,
                        "column": 4
                      },
                      "end": {
                        "line": 27,
                        "column": 5
                      }
                    }
                  },
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "AssignmentExpression",
                      "operator": "=",
                      "left": {
                        "type": "MemberExpression",
                        "computed": false,
                        "object": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "Identifier",
                            "name": "RetryOperator",
                            "range": [
                              1320,
                              1333
                            ],
                            "loc": {
                              "start": {
                                "line": 28,
                                "column": 4
                              },
                              "end": {
                                "line": 28,
                                "column": 17
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "prototype",
                            "range": [
                              1334,
                              1343
                            ],
                            "loc": {
                              "start": {
                                "line": 28,
                                "column": 18
                              },
                              "end": {
                                "line": 28,
                                "column": 27
                              }
                            }
                          },
                          "range": [
                            1320,
                            1343
                          ],
                          "loc": {
                            "start": {
                              "line": 28,
                              "column": 4
                            },
                            "end": {
                              "line": 28,
                              "column": 27
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "call",
                          "range": [
                            1344,
                            1348
                          ],
                          "loc": {
                            "start": {
                              "line": 28,
                              "column": 28
                            },
                            "end": {
                              "line": 28,
                              "column": 32
                            }
                          }
                        },
                        "range": [
                          1320,
                          1348
                        ],
                        "loc": {
                          "start": {
                            "line": 28,
                            "column": 4
                          },
                          "end": {
                            "line": 28,
                            "column": 32
                          }
                        }
                      },
                      "right": {
                        "type": "FunctionExpression",
                        "id": null,
                        "params": [
                          {
                            "type": "Identifier",
                            "name": "subscriber",
                            "range": [
                              1361,
                              1371
                            ],
                            "loc": {
                              "start": {
                                "line": 28,
                                "column": 45
                              },
                              "end": {
                                "line": 28,
                                "column": 55
                              }
                            }
                          },
                          {
                            "type": "Identifier",
                            "name": "source",
                            "range": [
                              1373,
                              1379
                            ],
                            "loc": {
                              "start": {
                                "line": 28,
                                "column": 57
                              },
                              "end": {
                                "line": 28,
                                "column": 63
                              }
                            }
                          }
                        ],
                        "body": {
                          "type": "BlockStatement",
                          "body": [
                            {
                              "type": "ReturnStatement",
                              "argument": {
                                "type": "CallExpression",
                                "callee": {
                                  "type": "MemberExpression",
                                  "computed": false,
                                  "object": {
                                    "type": "Identifier",
                                    "name": "source",
                                    "range": [
                                      1398,
                                      1404
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 29,
                                        "column": 15
                                      },
                                      "end": {
                                        "line": 29,
                                        "column": 21
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "_subscribe",
                                    "range": [
                                      1405,
                                      1415
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 29,
                                        "column": 22
                                      },
                                      "end": {
                                        "line": 29,
                                        "column": 32
                                      }
                                    }
                                  },
                                  "range": [
                                    1398,
                                    1415
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 29,
                                      "column": 15
                                    },
                                    "end": {
                                      "line": 29,
                                      "column": 32
                                    }
                                  }
                                },
                                "arguments": [
                                  {
                                    "type": "NewExpression",
                                    "callee": {
                                      "type": "Identifier",
                                      "name": "RetrySubscriber",
                                      "range": [
                                        1420,
                                        1435
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 29,
                                          "column": 37
                                        },
                                        "end": {
                                          "line": 29,
                                          "column": 52
                                        }
                                      }
                                    },
                                    "arguments": [
                                      {
                                        "type": "Identifier",
                                        "name": "subscriber",
                                        "range": [
                                          1436,
                                          1446
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 29,
                                            "column": 53
                                          },
                                          "end": {
                                            "line": 29,
                                            "column": 63
                                          }
                                        }
                                      },
                                      {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "ThisExpression",
                                          "range": [
                                            1448,
                                            1452
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 29,
                                              "column": 65
                                            },
                                            "end": {
                                              "line": 29,
                                              "column": 69
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "count",
                                          "range": [
                                            1453,
                                            1458
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 29,
                                              "column": 70
                                            },
                                            "end": {
                                              "line": 29,
                                              "column": 75
                                            }
                                          }
                                        },
                                        "range": [
                                          1448,
                                          1458
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 29,
                                            "column": 65
                                          },
                                          "end": {
                                            "line": 29,
                                            "column": 75
                                          }
                                        }
                                      },
                                      {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "ThisExpression",
                                          "range": [
                                            1460,
                                            1464
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 29,
                                              "column": 77
                                            },
                                            "end": {
                                              "line": 29,
                                              "column": 81
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "source",
                                          "range": [
                                            1465,
                                            1471
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 29,
                                              "column": 82
                                            },
                                            "end": {
                                              "line": 29,
                                              "column": 88
                                            }
                                          }
                                        },
                                        "range": [
                                          1460,
                                          1471
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 29,
                                            "column": 77
                                          },
                                          "end": {
                                            "line": 29,
                                            "column": 88
                                          }
                                        }
                                      }
                                    ],
                                    "range": [
                                      1416,
                                      1472
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 29,
                                        "column": 33
                                      },
                                      "end": {
                                        "line": 29,
                                        "column": 89
                                      }
                                    }
                                  }
                                ],
                                "range": [
                                  1398,
                                  1473
                                ],
                                "loc": {
                                  "start": {
                                    "line": 29,
                                    "column": 15
                                  },
                                  "end": {
                                    "line": 29,
                                    "column": 90
                                  }
                                }
                              },
                              "range": [
                                1391,
                                1474
                              ],
                              "loc": {
                                "start": {
                                  "line": 29,
                                  "column": 8
                                },
                                "end": {
                                  "line": 29,
                                  "column": 91
                                }
                              }
                            }
                          ],
                          "range": [
                            1381,
                            1480
                          ],
                          "loc": {
                            "start": {
                              "line": 28,
                              "column": 65
                            },
                            "end": {
                              "line": 30,
                              "column": 5
                            }
                          }
                        },
                        "generator": false,
                        "expression": false,
                        "range": [
                          1351,
                          1480
                        ],
                        "loc": {
                          "start": {
                            "line": 28,
                            "column": 35
                          },
                          "end": {
                            "line": 30,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        1320,
                        1480
                      ],
                      "loc": {
                        "start": {
                          "line": 28,
                          "column": 4
                        },
                        "end": {
                          "line": 30,
                          "column": 5
                        }
                      }
                    },
                    "range": [
                      1320,
                      1481
                    ],
                    "loc": {
                      "start": {
                        "line": 28,
                        "column": 4
                      },
                      "end": {
                        "line": 30,
                        "column": 6
                      }
                    }
                  },
                  {
                    "type": "ReturnStatement",
                    "argument": {
                      "type": "Identifier",
                      "name": "RetryOperator",
                      "range": [
                        1493,
                        1506
                      ],
                      "loc": {
                        "start": {
                          "line": 31,
                          "column": 11
                        },
                        "end": {
                          "line": 31,
                          "column": 24
                        }
                      }
                    },
                    "range": [
                      1486,
                      1507
                    ],
                    "loc": {
                      "start": {
                        "line": 31,
                        "column": 4
                      },
                      "end": {
                        "line": 31,
                        "column": 25
                      }
                    }
                  }
                ],
                "range": [
                  1206,
                  1509
                ],
                "loc": {
                  "start": {
                    "line": 23,
                    "column": 33
                  },
                  "end": {
                    "line": 32,
                    "column": 1
                  }
                }
              },
              "generator": false,
              "expression": false,
              "range": [
                1194,
                1509
              ],
              "loc": {
                "start": {
                  "line": 23,
                  "column": 21
                },
                "end": {
                  "line": 32,
                  "column": 1
                }
              }
            },
            "arguments": [],
            "range": [
              1194,
              1511
            ],
            "loc": {
              "start": {
                "line": 23,
                "column": 21
              },
              "end": {
                "line": 32,
                "column": 3
              }
            }
          },
          "range": [
            1177,
            1512
          ],
          "loc": {
            "start": {
              "line": 23,
              "column": 4
            },
            "end": {
              "line": 32,
              "column": 4
            }
          }
        }
      ],
      "kind": "var",
      "range": [
        1173,
        1513
      ],
      "loc": {
        "start": {
          "line": 23,
          "column": 0
        },
        "end": {
          "line": 32,
          "column": 5
        }
      },
      "trailingComments": [
        {
          "type": "Block",
          "value": "*\n * We need this JSDoc comment for affecting ESDoc.\n * @ignore\n * @extends {Ignored}\n ",
          "range": [
            1514,
            1605
          ],
          "loc": {
            "start": {
              "line": 33,
              "column": 0
            },
            "end": {
              "line": 37,
              "column": 3
            }
          }
        }
      ]
    },
    {
      "type": "VariableDeclaration",
      "declarations": [
        {
          "type": "VariableDeclarator",
          "id": {
            "type": "Identifier",
            "name": "RetrySubscriber",
            "range": [
              1610,
              1625
            ],
            "loc": {
              "start": {
                "line": 38,
                "column": 4
              },
              "end": {
                "line": 38,
                "column": 19
              }
            }
          },
          "init": {
            "type": "CallExpression",
            "callee": {
              "type": "FunctionExpression",
              "id": null,
              "params": [
                {
                  "type": "Identifier",
                  "name": "_super",
                  "range": [
                    1639,
                    1645
                  ],
                  "loc": {
                    "start": {
                      "line": 38,
                      "column": 33
                    },
                    "end": {
                      "line": 38,
                      "column": 39
                    }
                  }
                }
              ],
              "body": {
                "type": "BlockStatement",
                "body": [
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "CallExpression",
                      "callee": {
                        "type": "Identifier",
                        "name": "__extends",
                        "range": [
                          1653,
                          1662
                        ],
                        "loc": {
                          "start": {
                            "line": 39,
                            "column": 4
                          },
                          "end": {
                            "line": 39,
                            "column": 13
                          }
                        }
                      },
                      "arguments": [
                        {
                          "type": "Identifier",
                          "name": "RetrySubscriber",
                          "range": [
                            1663,
                            1678
                          ],
                          "loc": {
                            "start": {
                              "line": 39,
                              "column": 14
                            },
                            "end": {
                              "line": 39,
                              "column": 29
                            }
                          }
                        },
                        {
                          "type": "Identifier",
                          "name": "_super",
                          "range": [
                            1680,
                            1686
                          ],
                          "loc": {
                            "start": {
                              "line": 39,
                              "column": 31
                            },
                            "end": {
                              "line": 39,
                              "column": 37
                            }
                          }
                        }
                      ],
                      "range": [
                        1653,
                        1687
                      ],
                      "loc": {
                        "start": {
                          "line": 39,
                          "column": 4
                        },
                        "end": {
                          "line": 39,
                          "column": 38
                        }
                      }
                    },
                    "range": [
                      1653,
                      1688
                    ],
                    "loc": {
                      "start": {
                        "line": 39,
                        "column": 4
                      },
                      "end": {
                        "line": 39,
                        "column": 39
                      }
                    }
                  },
                  {
                    "type": "FunctionDeclaration",
                    "id": {
                      "type": "Identifier",
                      "name": "RetrySubscriber",
                      "range": [
                        1702,
                        1717
                      ],
                      "loc": {
                        "start": {
                          "line": 40,
                          "column": 13
                        },
                        "end": {
                          "line": 40,
                          "column": 28
                        }
                      }
                    },
                    "params": [
                      {
                        "type": "Identifier",
                        "name": "destination",
                        "range": [
                          1718,
                          1729
                        ],
                        "loc": {
                          "start": {
                            "line": 40,
                            "column": 29
                          },
                          "end": {
                            "line": 40,
                            "column": 40
                          }
                        }
                      },
                      {
                        "type": "Identifier",
                        "name": "count",
                        "range": [
                          1731,
                          1736
                        ],
                        "loc": {
                          "start": {
                            "line": 40,
                            "column": 42
                          },
                          "end": {
                            "line": 40,
                            "column": 47
                          }
                        }
                      },
                      {
                        "type": "Identifier",
                        "name": "source",
                        "range": [
                          1738,
                          1744
                        ],
                        "loc": {
                          "start": {
                            "line": 40,
                            "column": 49
                          },
                          "end": {
                            "line": 40,
                            "column": 55
                          }
                        }
                      }
                    ],
                    "body": {
                      "type": "BlockStatement",
                      "body": [
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "CallExpression",
                            "callee": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "Identifier",
                                "name": "_super",
                                "range": [
                                  1756,
                                  1762
                                ],
                                "loc": {
                                  "start": {
                                    "line": 41,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 41,
                                    "column": 14
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "call",
                                "range": [
                                  1763,
                                  1767
                                ],
                                "loc": {
                                  "start": {
                                    "line": 41,
                                    "column": 15
                                  },
                                  "end": {
                                    "line": 41,
                                    "column": 19
                                  }
                                }
                              },
                              "range": [
                                1756,
                                1767
                              ],
                              "loc": {
                                "start": {
                                  "line": 41,
                                  "column": 8
                                },
                                "end": {
                                  "line": 41,
                                  "column": 19
                                }
                              }
                            },
                            "arguments": [
                              {
                                "type": "ThisExpression",
                                "range": [
                                  1768,
                                  1772
                                ],
                                "loc": {
                                  "start": {
                                    "line": 41,
                                    "column": 20
                                  },
                                  "end": {
                                    "line": 41,
                                    "column": 24
                                  }
                                }
                              },
                              {
                                "type": "Identifier",
                                "name": "destination",
                                "range": [
                                  1774,
                                  1785
                                ],
                                "loc": {
                                  "start": {
                                    "line": 41,
                                    "column": 26
                                  },
                                  "end": {
                                    "line": 41,
                                    "column": 37
                                  }
                                }
                              }
                            ],
                            "range": [
                              1756,
                              1786
                            ],
                            "loc": {
                              "start": {
                                "line": 41,
                                "column": 8
                              },
                              "end": {
                                "line": 41,
                                "column": 38
                              }
                            }
                          },
                          "range": [
                            1756,
                            1787
                          ],
                          "loc": {
                            "start": {
                              "line": 41,
                              "column": 8
                            },
                            "end": {
                              "line": 41,
                              "column": 39
                            }
                          }
                        },
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "AssignmentExpression",
                            "operator": "=",
                            "left": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  1796,
                                  1800
                                ],
                                "loc": {
                                  "start": {
                                    "line": 42,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 42,
                                    "column": 12
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "count",
                                "range": [
                                  1801,
                                  1806
                                ],
                                "loc": {
                                  "start": {
                                    "line": 42,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 42,
                                    "column": 18
                                  }
                                }
                              },
                              "range": [
                                1796,
                                1806
                              ],
                              "loc": {
                                "start": {
                                  "line": 42,
                                  "column": 8
                                },
                                "end": {
                                  "line": 42,
                                  "column": 18
                                }
                              }
                            },
                            "right": {
                              "type": "Identifier",
                              "name": "count",
                              "range": [
                                1809,
                                1814
                              ],
                              "loc": {
                                "start": {
                                  "line": 42,
                                  "column": 21
                                },
                                "end": {
                                  "line": 42,
                                  "column": 26
                                }
                              }
                            },
                            "range": [
                              1796,
                              1814
                            ],
                            "loc": {
                              "start": {
                                "line": 42,
                                "column": 8
                              },
                              "end": {
                                "line": 42,
                                "column": 26
                              }
                            }
                          },
                          "range": [
                            1796,
                            1815
                          ],
                          "loc": {
                            "start": {
                              "line": 42,
                              "column": 8
                            },
                            "end": {
                              "line": 42,
                              "column": 27
                            }
                          }
                        },
                        {
                          "type": "ExpressionStatement",
                          "expression": {
                            "type": "AssignmentExpression",
                            "operator": "=",
                            "left": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  1824,
                                  1828
                                ],
                                "loc": {
                                  "start": {
                                    "line": 43,
                                    "column": 8
                                  },
                                  "end": {
                                    "line": 43,
                                    "column": 12
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "source",
                                "range": [
                                  1829,
                                  1835
                                ],
                                "loc": {
                                  "start": {
                                    "line": 43,
                                    "column": 13
                                  },
                                  "end": {
                                    "line": 43,
                                    "column": 19
                                  }
                                }
                              },
                              "range": [
                                1824,
                                1835
                              ],
                              "loc": {
                                "start": {
                                  "line": 43,
                                  "column": 8
                                },
                                "end": {
                                  "line": 43,
                                  "column": 19
                                }
                              }
                            },
                            "right": {
                              "type": "Identifier",
                              "name": "source",
                              "range": [
                                1838,
                                1844
                              ],
                              "loc": {
                                "start": {
                                  "line": 43,
                                  "column": 22
                                },
                                "end": {
                                  "line": 43,
                                  "column": 28
                                }
                              }
                            },
                            "range": [
                              1824,
                              1844
                            ],
                            "loc": {
                              "start": {
                                "line": 43,
                                "column": 8
                              },
                              "end": {
                                "line": 43,
                                "column": 28
                              }
                            }
                          },
                          "range": [
                            1824,
                            1845
                          ],
                          "loc": {
                            "start": {
                              "line": 43,
                              "column": 8
                            },
                            "end": {
                              "line": 43,
                              "column": 29
                            }
                          }
                        }
                      ],
                      "range": [
                        1746,
                        1851
                      ],
                      "loc": {
                        "start": {
                          "line": 40,
                          "column": 57
                        },
                        "end": {
                          "line": 44,
                          "column": 5
                        }
                      }
                    },
                    "generator": false,
                    "expression": false,
                    "range": [
                      1693,
                      1851
                    ],
                    "loc": {
                      "start": {
                        "line": 40,
                        "column": 4
                      },
                      "end": {
                        "line": 44,
                        "column": 5
                      }
                    }
                  },
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "AssignmentExpression",
                      "operator": "=",
                      "left": {
                        "type": "MemberExpression",
                        "computed": false,
                        "object": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "Identifier",
                            "name": "RetrySubscriber",
                            "range": [
                              1856,
                              1871
                            ],
                            "loc": {
                              "start": {
                                "line": 45,
                                "column": 4
                              },
                              "end": {
                                "line": 45,
                                "column": 19
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "prototype",
                            "range": [
                              1872,
                              1881
                            ],
                            "loc": {
                              "start": {
                                "line": 45,
                                "column": 20
                              },
                              "end": {
                                "line": 45,
                                "column": 29
                              }
                            }
                          },
                          "range": [
                            1856,
                            1881
                          ],
                          "loc": {
                            "start": {
                              "line": 45,
                              "column": 4
                            },
                            "end": {
                              "line": 45,
                              "column": 29
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "error",
                          "range": [
                            1882,
                            1887
                          ],
                          "loc": {
                            "start": {
                              "line": 45,
                              "column": 30
                            },
                            "end": {
                              "line": 45,
                              "column": 35
                            }
                          }
                        },
                        "range": [
                          1856,
                          1887
                        ],
                        "loc": {
                          "start": {
                            "line": 45,
                            "column": 4
                          },
                          "end": {
                            "line": 45,
                            "column": 35
                          }
                        }
                      },
                      "right": {
                        "type": "FunctionExpression",
                        "id": null,
                        "params": [
                          {
                            "type": "Identifier",
                            "name": "err",
                            "range": [
                              1900,
                              1903
                            ],
                            "loc": {
                              "start": {
                                "line": 45,
                                "column": 48
                              },
                              "end": {
                                "line": 45,
                                "column": 51
                              }
                            }
                          }
                        ],
                        "body": {
                          "type": "BlockStatement",
                          "body": [
                            {
                              "type": "IfStatement",
                              "test": {
                                "type": "UnaryExpression",
                                "operator": "!",
                                "argument": {
                                  "type": "MemberExpression",
                                  "computed": false,
                                  "object": {
                                    "type": "ThisExpression",
                                    "range": [
                                      1920,
                                      1924
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 46,
                                        "column": 13
                                      },
                                      "end": {
                                        "line": 46,
                                        "column": 17
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "isStopped",
                                    "range": [
                                      1925,
                                      1934
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 46,
                                        "column": 18
                                      },
                                      "end": {
                                        "line": 46,
                                        "column": 27
                                      }
                                    }
                                  },
                                  "range": [
                                    1920,
                                    1934
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 46,
                                      "column": 13
                                    },
                                    "end": {
                                      "line": 46,
                                      "column": 27
                                    }
                                  }
                                },
                                "prefix": true,
                                "range": [
                                  1919,
                                  1934
                                ],
                                "loc": {
                                  "start": {
                                    "line": 46,
                                    "column": 12
                                  },
                                  "end": {
                                    "line": 46,
                                    "column": 27
                                  }
                                }
                              },
                              "consequent": {
                                "type": "BlockStatement",
                                "body": [
                                  {
                                    "type": "VariableDeclaration",
                                    "declarations": [
                                      {
                                        "type": "VariableDeclarator",
                                        "id": {
                                          "type": "Identifier",
                                          "name": "_a",
                                          "range": [
                                            1954,
                                            1956
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 47,
                                              "column": 16
                                            },
                                            "end": {
                                              "line": 47,
                                              "column": 18
                                            }
                                          }
                                        },
                                        "init": {
                                          "type": "ThisExpression",
                                          "range": [
                                            1959,
                                            1963
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 47,
                                              "column": 21
                                            },
                                            "end": {
                                              "line": 47,
                                              "column": 25
                                            }
                                          }
                                        },
                                        "range": [
                                          1954,
                                          1963
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 47,
                                            "column": 16
                                          },
                                          "end": {
                                            "line": 47,
                                            "column": 25
                                          }
                                        }
                                      },
                                      {
                                        "type": "VariableDeclarator",
                                        "id": {
                                          "type": "Identifier",
                                          "name": "source",
                                          "range": [
                                            1965,
                                            1971
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 47,
                                              "column": 27
                                            },
                                            "end": {
                                              "line": 47,
                                              "column": 33
                                            }
                                          }
                                        },
                                        "init": {
                                          "type": "MemberExpression",
                                          "computed": false,
                                          "object": {
                                            "type": "Identifier",
                                            "name": "_a",
                                            "range": [
                                              1974,
                                              1976
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 47,
                                                "column": 36
                                              },
                                              "end": {
                                                "line": 47,
                                                "column": 38
                                              }
                                            }
                                          },
                                          "property": {
                                            "type": "Identifier",
                                            "name": "source",
                                            "range": [
                                              1977,
                                              1983
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 47,
                                                "column": 39
                                              },
                                              "end": {
                                                "line": 47,
                                                "column": 45
                                              }
                                            }
                                          },
                                          "range": [
                                            1974,
                                            1983
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 47,
                                              "column": 36
                                            },
                                            "end": {
                                              "line": 47,
                                              "column": 45
                                            }
                                          }
                                        },
                                        "range": [
                                          1965,
                                          1983
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 47,
                                            "column": 27
                                          },
                                          "end": {
                                            "line": 47,
                                            "column": 45
                                          }
                                        }
                                      },
                                      {
                                        "type": "VariableDeclarator",
                                        "id": {
                                          "type": "Identifier",
                                          "name": "count",
                                          "range": [
                                            1985,
                                            1990
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 47,
                                              "column": 47
                                            },
                                            "end": {
                                              "line": 47,
                                              "column": 52
                                            }
                                          }
                                        },
                                        "init": {
                                          "type": "MemberExpression",
                                          "computed": false,
                                          "object": {
                                            "type": "Identifier",
                                            "name": "_a",
                                            "range": [
                                              1993,
                                              1995
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 47,
                                                "column": 55
                                              },
                                              "end": {
                                                "line": 47,
                                                "column": 57
                                              }
                                            }
                                          },
                                          "property": {
                                            "type": "Identifier",
                                            "name": "count",
                                            "range": [
                                              1996,
                                              2001
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 47,
                                                "column": 58
                                              },
                                              "end": {
                                                "line": 47,
                                                "column": 63
                                              }
                                            }
                                          },
                                          "range": [
                                            1993,
                                            2001
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 47,
                                              "column": 55
                                            },
                                            "end": {
                                              "line": 47,
                                              "column": 63
                                            }
                                          }
                                        },
                                        "range": [
                                          1985,
                                          2001
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 47,
                                            "column": 47
                                          },
                                          "end": {
                                            "line": 47,
                                            "column": 63
                                          }
                                        }
                                      }
                                    ],
                                    "kind": "var",
                                    "range": [
                                      1950,
                                      2002
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 47,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 47,
                                        "column": 64
                                      }
                                    }
                                  },
                                  {
                                    "type": "IfStatement",
                                    "test": {
                                      "type": "BinaryExpression",
                                      "operator": "===",
                                      "left": {
                                        "type": "Identifier",
                                        "name": "count",
                                        "range": [
                                          2019,
                                          2024
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 48,
                                            "column": 16
                                          },
                                          "end": {
                                            "line": 48,
                                            "column": 21
                                          }
                                        }
                                      },
                                      "right": {
                                        "type": "Literal",
                                        "value": 0,
                                        "raw": "0",
                                        "range": [
                                          2029,
                                          2030
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 48,
                                            "column": 26
                                          },
                                          "end": {
                                            "line": 48,
                                            "column": 27
                                          }
                                        }
                                      },
                                      "range": [
                                        2019,
                                        2030
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 48,
                                          "column": 16
                                        },
                                        "end": {
                                          "line": 48,
                                          "column": 27
                                        }
                                      }
                                    },
                                    "consequent": {
                                      "type": "BlockStatement",
                                      "body": [
                                        {
                                          "type": "ReturnStatement",
                                          "argument": {
                                            "type": "CallExpression",
                                            "callee": {
                                              "type": "MemberExpression",
                                              "computed": false,
                                              "object": {
                                                "type": "MemberExpression",
                                                "computed": false,
                                                "object": {
                                                  "type": "MemberExpression",
                                                  "computed": false,
                                                  "object": {
                                                    "type": "Identifier",
                                                    "name": "_super",
                                                    "range": [
                                                      2057,
                                                      2063
                                                    ],
                                                    "loc": {
                                                      "start": {
                                                        "line": 49,
                                                        "column": 23
                                                      },
                                                      "end": {
                                                        "line": 49,
                                                        "column": 29
                                                      }
                                                    }
                                                  },
                                                  "property": {
                                                    "type": "Identifier",
                                                    "name": "prototype",
                                                    "range": [
                                                      2064,
                                                      2073
                                                    ],
                                                    "loc": {
                                                      "start": {
                                                        "line": 49,
                                                        "column": 30
                                                      },
                                                      "end": {
                                                        "line": 49,
                                                        "column": 39
                                                      }
                                                    }
                                                  },
                                                  "range": [
                                                    2057,
                                                    2073
                                                  ],
                                                  "loc": {
                                                    "start": {
                                                      "line": 49,
                                                      "column": 23
                                                    },
                                                    "end": {
                                                      "line": 49,
                                                      "column": 39
                                                    }
                                                  }
                                                },
                                                "property": {
                                                  "type": "Identifier",
                                                  "name": "error",
                                                  "range": [
                                                    2074,
                                                    2079
                                                  ],
                                                  "loc": {
                                                    "start": {
                                                      "line": 49,
                                                      "column": 40
                                                    },
                                                    "end": {
                                                      "line": 49,
                                                      "column": 45
                                                    }
                                                  }
                                                },
                                                "range": [
                                                  2057,
                                                  2079
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 49,
                                                    "column": 23
                                                  },
                                                  "end": {
                                                    "line": 49,
                                                    "column": 45
                                                  }
                                                }
                                              },
                                              "property": {
                                                "type": "Identifier",
                                                "name": "call",
                                                "range": [
                                                  2080,
                                                  2084
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 49,
                                                    "column": 46
                                                  },
                                                  "end": {
                                                    "line": 49,
                                                    "column": 50
                                                  }
                                                }
                                              },
                                              "range": [
                                                2057,
                                                2084
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 49,
                                                  "column": 23
                                                },
                                                "end": {
                                                  "line": 49,
                                                  "column": 50
                                                }
                                              }
                                            },
                                            "arguments": [
                                              {
                                                "type": "ThisExpression",
                                                "range": [
                                                  2085,
                                                  2089
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 49,
                                                    "column": 51
                                                  },
                                                  "end": {
                                                    "line": 49,
                                                    "column": 55
                                                  }
                                                }
                                              },
                                              {
                                                "type": "Identifier",
                                                "name": "err",
                                                "range": [
                                                  2091,
                                                  2094
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 49,
                                                    "column": 57
                                                  },
                                                  "end": {
                                                    "line": 49,
                                                    "column": 60
                                                  }
                                                }
                                              }
                                            ],
                                            "range": [
                                              2057,
                                              2095
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 49,
                                                "column": 23
                                              },
                                              "end": {
                                                "line": 49,
                                                "column": 61
                                              }
                                            }
                                          },
                                          "range": [
                                            2050,
                                            2096
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 49,
                                              "column": 16
                                            },
                                            "end": {
                                              "line": 49,
                                              "column": 62
                                            }
                                          }
                                        }
                                      ],
                                      "range": [
                                        2032,
                                        2110
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 48,
                                          "column": 29
                                        },
                                        "end": {
                                          "line": 50,
                                          "column": 13
                                        }
                                      }
                                    },
                                    "alternate": {
                                      "type": "IfStatement",
                                      "test": {
                                        "type": "BinaryExpression",
                                        "operator": ">",
                                        "left": {
                                          "type": "Identifier",
                                          "name": "count",
                                          "range": [
                                            2132,
                                            2137
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 51,
                                              "column": 21
                                            },
                                            "end": {
                                              "line": 51,
                                              "column": 26
                                            }
                                          }
                                        },
                                        "right": {
                                          "type": "UnaryExpression",
                                          "operator": "-",
                                          "argument": {
                                            "type": "Literal",
                                            "value": 1,
                                            "raw": "1",
                                            "range": [
                                              2141,
                                              2142
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 51,
                                                "column": 30
                                              },
                                              "end": {
                                                "line": 51,
                                                "column": 31
                                              }
                                            }
                                          },
                                          "prefix": true,
                                          "range": [
                                            2140,
                                            2142
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 51,
                                              "column": 29
                                            },
                                            "end": {
                                              "line": 51,
                                              "column": 31
                                            }
                                          }
                                        },
                                        "range": [
                                          2132,
                                          2142
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 51,
                                            "column": 21
                                          },
                                          "end": {
                                            "line": 51,
                                            "column": 31
                                          }
                                        }
                                      },
                                      "consequent": {
                                        "type": "BlockStatement",
                                        "body": [
                                          {
                                            "type": "ExpressionStatement",
                                            "expression": {
                                              "type": "AssignmentExpression",
                                              "operator": "=",
                                              "left": {
                                                "type": "MemberExpression",
                                                "computed": false,
                                                "object": {
                                                  "type": "ThisExpression",
                                                  "range": [
                                                    2162,
                                                    2166
                                                  ],
                                                  "loc": {
                                                    "start": {
                                                      "line": 52,
                                                      "column": 16
                                                    },
                                                    "end": {
                                                      "line": 52,
                                                      "column": 20
                                                    }
                                                  }
                                                },
                                                "property": {
                                                  "type": "Identifier",
                                                  "name": "count",
                                                  "range": [
                                                    2167,
                                                    2172
                                                  ],
                                                  "loc": {
                                                    "start": {
                                                      "line": 52,
                                                      "column": 21
                                                    },
                                                    "end": {
                                                      "line": 52,
                                                      "column": 26
                                                    }
                                                  }
                                                },
                                                "range": [
                                                  2162,
                                                  2172
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 52,
                                                    "column": 16
                                                  },
                                                  "end": {
                                                    "line": 52,
                                                    "column": 26
                                                  }
                                                }
                                              },
                                              "right": {
                                                "type": "BinaryExpression",
                                                "operator": "-",
                                                "left": {
                                                  "type": "Identifier",
                                                  "name": "count",
                                                  "range": [
                                                    2175,
                                                    2180
                                                  ],
                                                  "loc": {
                                                    "start": {
                                                      "line": 52,
                                                      "column": 29
                                                    },
                                                    "end": {
                                                      "line": 52,
                                                      "column": 34
                                                    }
                                                  }
                                                },
                                                "right": {
                                                  "type": "Literal",
                                                  "value": 1,
                                                  "raw": "1",
                                                  "range": [
                                                    2183,
                                                    2184
                                                  ],
                                                  "loc": {
                                                    "start": {
                                                      "line": 52,
                                                      "column": 37
                                                    },
                                                    "end": {
                                                      "line": 52,
                                                      "column": 38
                                                    }
                                                  }
                                                },
                                                "range": [
                                                  2175,
                                                  2184
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 52,
                                                    "column": 29
                                                  },
                                                  "end": {
                                                    "line": 52,
                                                    "column": 38
                                                  }
                                                }
                                              },
                                              "range": [
                                                2162,
                                                2184
                                              ],
                                              "loc": {
                                                "start": {
                                                  "line": 52,
                                                  "column": 16
                                                },
                                                "end": {
                                                  "line": 52,
                                                  "column": 38
                                                }
                                              }
                                            },
                                            "range": [
                                              2162,
                                              2185
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 52,
                                                "column": 16
                                              },
                                              "end": {
                                                "line": 52,
                                                "column": 39
                                              }
                                            }
                                          }
                                        ],
                                        "range": [
                                          2144,
                                          2199
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 51,
                                            "column": 33
                                          },
                                          "end": {
                                            "line": 53,
                                            "column": 13
                                          }
                                        }
                                      },
                                      "alternate": null,
                                      "range": [
                                        2128,
                                        2199
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 51,
                                          "column": 17
                                        },
                                        "end": {
                                          "line": 53,
                                          "column": 13
                                        }
                                      }
                                    },
                                    "range": [
                                      2015,
                                      2199
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 48,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 53,
                                        "column": 13
                                      }
                                    }
                                  },
                                  {
                                    "type": "ExpressionStatement",
                                    "expression": {
                                      "type": "CallExpression",
                                      "callee": {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "ThisExpression",
                                          "range": [
                                            2212,
                                            2216
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 54,
                                              "column": 12
                                            },
                                            "end": {
                                              "line": 54,
                                              "column": 16
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "unsubscribe",
                                          "range": [
                                            2217,
                                            2228
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 54,
                                              "column": 17
                                            },
                                            "end": {
                                              "line": 54,
                                              "column": 28
                                            }
                                          }
                                        },
                                        "range": [
                                          2212,
                                          2228
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 54,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 54,
                                            "column": 28
                                          }
                                        }
                                      },
                                      "arguments": [],
                                      "range": [
                                        2212,
                                        2230
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 54,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 54,
                                          "column": 30
                                        }
                                      }
                                    },
                                    "range": [
                                      2212,
                                      2231
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 54,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 54,
                                        "column": 31
                                      }
                                    }
                                  },
                                  {
                                    "type": "ExpressionStatement",
                                    "expression": {
                                      "type": "AssignmentExpression",
                                      "operator": "=",
                                      "left": {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "ThisExpression",
                                          "range": [
                                            2244,
                                            2248
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 55,
                                              "column": 12
                                            },
                                            "end": {
                                              "line": 55,
                                              "column": 16
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "isStopped",
                                          "range": [
                                            2249,
                                            2258
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 55,
                                              "column": 17
                                            },
                                            "end": {
                                              "line": 55,
                                              "column": 26
                                            }
                                          }
                                        },
                                        "range": [
                                          2244,
                                          2258
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 55,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 55,
                                            "column": 26
                                          }
                                        }
                                      },
                                      "right": {
                                        "type": "Literal",
                                        "value": false,
                                        "raw": "false",
                                        "range": [
                                          2261,
                                          2266
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 55,
                                            "column": 29
                                          },
                                          "end": {
                                            "line": 55,
                                            "column": 34
                                          }
                                        }
                                      },
                                      "range": [
                                        2244,
                                        2266
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 55,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 55,
                                          "column": 34
                                        }
                                      }
                                    },
                                    "range": [
                                      2244,
                                      2267
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 55,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 55,
                                        "column": 35
                                      }
                                    }
                                  },
                                  {
                                    "type": "ExpressionStatement",
                                    "expression": {
                                      "type": "AssignmentExpression",
                                      "operator": "=",
                                      "left": {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "ThisExpression",
                                          "range": [
                                            2280,
                                            2284
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 56,
                                              "column": 12
                                            },
                                            "end": {
                                              "line": 56,
                                              "column": 16
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "closed",
                                          "range": [
                                            2285,
                                            2291
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 56,
                                              "column": 17
                                            },
                                            "end": {
                                              "line": 56,
                                              "column": 23
                                            }
                                          }
                                        },
                                        "range": [
                                          2280,
                                          2291
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 56,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 56,
                                            "column": 23
                                          }
                                        }
                                      },
                                      "right": {
                                        "type": "Literal",
                                        "value": false,
                                        "raw": "false",
                                        "range": [
                                          2294,
                                          2299
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 56,
                                            "column": 26
                                          },
                                          "end": {
                                            "line": 56,
                                            "column": 31
                                          }
                                        }
                                      },
                                      "range": [
                                        2280,
                                        2299
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 56,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 56,
                                          "column": 31
                                        }
                                      }
                                    },
                                    "range": [
                                      2280,
                                      2300
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 56,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 56,
                                        "column": 32
                                      }
                                    }
                                  },
                                  {
                                    "type": "ExpressionStatement",
                                    "expression": {
                                      "type": "CallExpression",
                                      "callee": {
                                        "type": "MemberExpression",
                                        "computed": false,
                                        "object": {
                                          "type": "Identifier",
                                          "name": "source",
                                          "range": [
                                            2313,
                                            2319
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 57,
                                              "column": 12
                                            },
                                            "end": {
                                              "line": 57,
                                              "column": 18
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "subscribe",
                                          "range": [
                                            2320,
                                            2329
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 57,
                                              "column": 19
                                            },
                                            "end": {
                                              "line": 57,
                                              "column": 28
                                            }
                                          }
                                        },
                                        "range": [
                                          2313,
                                          2329
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 57,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 57,
                                            "column": 28
                                          }
                                        }
                                      },
                                      "arguments": [
                                        {
                                          "type": "ThisExpression",
                                          "range": [
                                            2330,
                                            2334
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 57,
                                              "column": 29
                                            },
                                            "end": {
                                              "line": 57,
                                              "column": 33
                                            }
                                          }
                                        }
                                      ],
                                      "range": [
                                        2313,
                                        2335
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 57,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 57,
                                          "column": 34
                                        }
                                      }
                                    },
                                    "range": [
                                      2313,
                                      2336
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 57,
                                        "column": 12
                                      },
                                      "end": {
                                        "line": 57,
                                        "column": 35
                                      }
                                    }
                                  }
                                ],
                                "range": [
                                  1936,
                                  2346
                                ],
                                "loc": {
                                  "start": {
                                    "line": 46,
                                    "column": 29
                                  },
                                  "end": {
                                    "line": 58,
                                    "column": 9
                                  }
                                }
                              },
                              "alternate": null,
                              "range": [
                                1915,
                                2346
                              ],
                              "loc": {
                                "start": {
                                  "line": 46,
                                  "column": 8
                                },
                                "end": {
                                  "line": 58,
                                  "column": 9
                                }
                              }
                            }
                          ],
                          "range": [
                            1905,
                            2352
                          ],
                          "loc": {
                            "start": {
                              "line": 45,
                              "column": 53
                            },
                            "end": {
                              "line": 59,
                              "column": 5
                            }
                          }
                        },
                        "generator": false,
                        "expression": false,
                        "range": [
                          1890,
                          2352
                        ],
                        "loc": {
                          "start": {
                            "line": 45,
                            "column": 38
                          },
                          "end": {
                            "line": 59,
                            "column": 5
                          }
                        }
                      },
                      "range": [
                        1856,
                        2352
                      ],
                      "loc": {
                        "start": {
                          "line": 45,
                          "column": 4
                        },
                        "end": {
                          "line": 59,
                          "column": 5
                        }
                      }
                    },
                    "range": [
                      1856,
                      2353
                    ],
                    "loc": {
                      "start": {
                        "line": 45,
                        "column": 4
                      },
                      "end": {
                        "line": 59,
                        "column": 6
                      }
                    }
                  },
                  {
                    "type": "ReturnStatement",
                    "argument": {
                      "type": "Identifier",
                      "name": "RetrySubscriber",
                      "range": [
                        2365,
                        2380
                      ],
                      "loc": {
                        "start": {
                          "line": 60,
                          "column": 11
                        },
                        "end": {
                          "line": 60,
                          "column": 26
                        }
                      }
                    },
                    "range": [
                      2358,
                      2381
                    ],
                    "loc": {
                      "start": {
                        "line": 60,
                        "column": 4
                      },
                      "end": {
                        "line": 60,
                        "column": 27
                      }
                    }
                  }
                ],
                "range": [
                  1647,
                  2383
                ],
                "loc": {
                  "start": {
                    "line": 38,
                    "column": 41
                  },
                  "end": {
                    "line": 61,
                    "column": 1
                  }
                }
              },
              "generator": false,
              "expression": false,
              "range": [
                1629,
                2383
              ],
              "loc": {
                "start": {
                  "line": 38,
                  "column": 23
                },
                "end": {
                  "line": 61,
                  "column": 1
                }
              }
            },
            "arguments": [
              {
                "type": "Identifier",
                "name": "Subscriber",
                "range": [
                  2384,
                  2394
                ],
                "loc": {
                  "start": {
                    "line": 61,
                    "column": 2
                  },
                  "end": {
                    "line": 61,
                    "column": 12
                  }
                }
              }
            ],
            "range": [
              1629,
              2395
            ],
            "loc": {
              "start": {
                "line": 38,
                "column": 23
              },
              "end": {
                "line": 61,
                "column": 13
              }
            }
          },
          "range": [
            1610,
            2396
          ],
          "loc": {
            "start": {
              "line": 38,
              "column": 4
            },
            "end": {
              "line": 61,
              "column": 14
            }
          }
        }
      ],
      "kind": "var",
      "range": [
        1606,
        2397
      ],
      "loc": {
        "start": {
          "line": 38,
          "column": 0
        },
        "end": {
          "line": 61,
          "column": 15
        }
      },
      "leadingComments": [
        {
          "type": "Block",
          "value": "*\n * We need this JSDoc comment for affecting ESDoc.\n * @ignore\n * @extends {Ignored}\n ",
          "range": [
            1514,
            1605
          ],
          "loc": {
            "start": {
              "line": 33,
              "column": 0
            },
            "end": {
              "line": 37,
              "column": 3
            }
          }
        }
      ],
      "trailingComments": [
        {
          "type": "Line",
          "value": "# sourceMappingURL=retry.js.map",
          "range": [
            2398,
            2431
          ],
          "loc": {
            "start": {
              "line": 62,
              "column": 0
            },
            "end": {
              "line": 62,
              "column": 33
            }
          }
        }
      ]
    }
  ],
  "sourceType": "module",
  "range": [
    0,
    2397
  ],
  "loc": {
    "start": {
      "line": 1,
      "column": 0
    },
    "end": {
      "line": 61,
      "column": 15
    }
  },
  "comments": [
    {
      "type": "Block",
      "value": "*\n * Returns an Observable that mirrors the source Observable, resubscribing to it if it calls `error` and the\n * predicate returns true for that specific exception and retry count.\n * If the source Observable calls `error`, this method will resubscribe to the source Observable for a maximum of\n * count resubscriptions (given as a number parameter) rather than propagating the `error` call.\n *\n * <img src=\"./img/retry.png\" width=\"100%\">\n *\n * Any and all items emitted by the source Observable will be emitted by the resulting Observable, even those emitted\n * during failed subscriptions. For example, if an Observable fails at first but emits [1, 2] then succeeds the second\n * time and emits: [1, 2, 3, 4, 5] then the complete stream of emissions and notifications\n * would be: [1, 2, 1, 2, 3, 4, 5, `complete`].\n * @param {number} number of retry attempts before failing.\n * @return {Observable} the source Observable modified with the retry logic.\n * @method retry\n * @owner Observable\n ",
      "range": [
        44,
        1043
      ],
      "loc": {
        "start": {
          "line": 2,
          "column": 0
        },
        "end": {
          "line": 18,
          "column": 3
        }
      }
    },
    {
      "type": "Block",
      "value": "*\n * We need this JSDoc comment for affecting ESDoc.\n * @ignore\n * @extends {Ignored}\n ",
      "range": [
        1514,
        1605
      ],
      "loc": {
        "start": {
          "line": 33,
          "column": 0
        },
        "end": {
          "line": 37,
          "column": 3
        }
      }
    },
    {
      "type": "Line",
      "value": "# sourceMappingURL=retry.js.map",
      "range": [
        2398,
        2431
      ],
      "loc": {
        "start": {
          "line": 62,
          "column": 0
        },
        "end": {
          "line": 62,
          "column": 33
        }
      }
    }
  ]
}