{
  "type": "Program",
  "body": [
    {
      "type": "ImportDeclaration",
      "specifiers": [
        {
          "type": "ImportDefaultSpecifier",
          "local": {
            "type": "Identifier",
            "name": "Collector",
            "range": [
              7,
              16
            ],
            "loc": {
              "start": {
                "line": 1,
                "column": 7
              },
              "end": {
                "line": 1,
                "column": 16
              }
            }
          },
          "range": [
            7,
            16
          ],
          "loc": {
            "start": {
              "line": 1,
              "column": 7
            },
            "end": {
              "line": 1,
              "column": 16
            }
          }
        }
      ],
      "source": {
        "type": "Literal",
        "value": "../Collector",
        "raw": "'../Collector'",
        "range": [
          22,
          36
        ],
        "loc": {
          "start": {
            "line": 1,
            "column": 22
          },
          "end": {
            "line": 1,
            "column": 36
          }
        }
      },
      "range": [
        0,
        37
      ],
      "loc": {
        "start": {
          "line": 1,
          "column": 0
        },
        "end": {
          "line": 1,
          "column": 37
        }
      },
      "trailingComments": [
        {
          "type": "Block",
          "value": "*\n * A collector that captures `sumOfRecipricals`\n *   - The total of all the recipricals of the data values.\n *     (1/x1 + 1/x2 + 1/x3 + ... + 1/xn)\n ",
          "range": [
            39,
            195
          ],
          "loc": {
            "start": {
              "line": 3,
              "column": 0
            },
            "end": {
              "line": 7,
              "column": 3
            }
          }
        }
      ]
    },
    {
      "type": "ExportDefaultDeclaration",
      "declaration": {
        "type": "ClassDeclaration",
        "id": {
          "type": "Identifier",
          "name": "SumOfRecipricals",
          "range": [
            217,
            233
          ],
          "loc": {
            "start": {
              "line": 8,
              "column": 21
            },
            "end": {
              "line": 8,
              "column": 37
            }
          }
        },
        "superClass": {
          "type": "Identifier",
          "name": "Collector",
          "range": [
            242,
            251
          ],
          "loc": {
            "start": {
              "line": 8,
              "column": 46
            },
            "end": {
              "line": 8,
              "column": 55
            }
          }
        },
        "body": {
          "type": "ClassBody",
          "body": [
            {
              "type": "MethodDefinition",
              "key": {
                "type": "Identifier",
                "name": "constructor",
                "range": [
                  256,
                  267
                ],
                "loc": {
                  "start": {
                    "line": 9,
                    "column": 2
                  },
                  "end": {
                    "line": 9,
                    "column": 13
                  }
                }
              },
              "value": {
                "type": "FunctionExpression",
                "id": null,
                "params": [],
                "body": {
                  "type": "BlockStatement",
                  "body": [
                    {
                      "type": "ExpressionStatement",
                      "expression": {
                        "type": "CallExpression",
                        "callee": {
                          "type": "Super",
                          "range": [
                            276,
                            281
                          ],
                          "loc": {
                            "start": {
                              "line": 10,
                              "column": 4
                            },
                            "end": {
                              "line": 10,
                              "column": 9
                            }
                          }
                        },
                        "arguments": [
                          {
                            "type": "Literal",
                            "value": "sumOfRecipricals",
                            "raw": "'sumOfRecipricals'",
                            "range": [
                              282,
                              300
                            ],
                            "loc": {
                              "start": {
                                "line": 10,
                                "column": 10
                              },
                              "end": {
                                "line": 10,
                                "column": 28
                              }
                            }
                          },
                          {
                            "type": "Literal",
                            "value": 0,
                            "raw": "0",
                            "range": [
                              302,
                              303
                            ],
                            "loc": {
                              "start": {
                                "line": 10,
                                "column": 30
                              },
                              "end": {
                                "line": 10,
                                "column": 31
                              }
                            }
                          }
                        ],
                        "range": [
                          276,
                          304
                        ],
                        "loc": {
                          "start": {
                            "line": 10,
                            "column": 4
                          },
                          "end": {
                            "line": 10,
                            "column": 32
                          }
                        }
                      },
                      "range": [
                        276,
                        305
                      ],
                      "loc": {
                        "start": {
                          "line": 10,
                          "column": 4
                        },
                        "end": {
                          "line": 10,
                          "column": 33
                        }
                      }
                    }
                  ],
                  "range": [
                    270,
                    309
                  ],
                  "loc": {
                    "start": {
                      "line": 9,
                      "column": 16
                    },
                    "end": {
                      "line": 11,
                      "column": 3
                    }
                  }
                },
                "generator": false,
                "expression": false,
                "range": [
                  267,
                  309
                ],
                "loc": {
                  "start": {
                    "line": 9,
                    "column": 13
                  },
                  "end": {
                    "line": 11,
                    "column": 3
                  }
                }
              },
              "kind": "constructor",
              "computed": false,
              "range": [
                256,
                309
              ],
              "loc": {
                "start": {
                  "line": 9,
                  "column": 2
                },
                "end": {
                  "line": 11,
                  "column": 3
                }
              },
              "static": false
            },
            {
              "type": "MethodDefinition",
              "key": {
                "type": "Identifier",
                "name": "handleProcess",
                "range": [
                  312,
                  325
                ],
                "loc": {
                  "start": {
                    "line": 12,
                    "column": 2
                  },
                  "end": {
                    "line": 12,
                    "column": 15
                  }
                }
              },
              "value": {
                "type": "FunctionExpression",
                "id": null,
                "params": [
                  {
                    "type": "Identifier",
                    "name": "state",
                    "range": [
                      326,
                      331
                    ],
                    "loc": {
                      "start": {
                        "line": 12,
                        "column": 16
                      },
                      "end": {
                        "line": 12,
                        "column": 21
                      }
                    }
                  },
                  {
                    "type": "Identifier",
                    "name": "prev",
                    "range": [
                      333,
                      337
                    ],
                    "loc": {
                      "start": {
                        "line": 12,
                        "column": 23
                      },
                      "end": {
                        "line": 12,
                        "column": 27
                      }
                    }
                  },
                  {
                    "type": "Identifier",
                    "name": "val",
                    "range": [
                      339,
                      342
                    ],
                    "loc": {
                      "start": {
                        "line": 12,
                        "column": 29
                      },
                      "end": {
                        "line": 12,
                        "column": 32
                      }
                    }
                  }
                ],
                "body": {
                  "type": "BlockStatement",
                  "body": [
                    {
                      "type": "ReturnStatement",
                      "argument": {
                        "type": "BinaryExpression",
                        "operator": "+",
                        "left": {
                          "type": "Identifier",
                          "name": "prev",
                          "range": [
                            357,
                            361
                          ],
                          "loc": {
                            "start": {
                              "line": 13,
                              "column": 11
                            },
                            "end": {
                              "line": 13,
                              "column": 15
                            }
                          }
                        },
                        "right": {
                          "type": "BinaryExpression",
                          "operator": "/",
                          "left": {
                            "type": "Literal",
                            "value": 1,
                            "raw": "1",
                            "range": [
                              365,
                              366
                            ],
                            "loc": {
                              "start": {
                                "line": 13,
                                "column": 19
                              },
                              "end": {
                                "line": 13,
                                "column": 20
                              }
                            }
                          },
                          "right": {
                            "type": "Identifier",
                            "name": "val",
                            "range": [
                              369,
                              372
                            ],
                            "loc": {
                              "start": {
                                "line": 13,
                                "column": 23
                              },
                              "end": {
                                "line": 13,
                                "column": 26
                              }
                            }
                          },
                          "range": [
                            365,
                            372
                          ],
                          "loc": {
                            "start": {
                              "line": 13,
                              "column": 19
                            },
                            "end": {
                              "line": 13,
                              "column": 26
                            }
                          }
                        },
                        "range": [
                          357,
                          373
                        ],
                        "loc": {
                          "start": {
                            "line": 13,
                            "column": 11
                          },
                          "end": {
                            "line": 13,
                            "column": 27
                          }
                        }
                      },
                      "range": [
                        350,
                        374
                      ],
                      "loc": {
                        "start": {
                          "line": 13,
                          "column": 4
                        },
                        "end": {
                          "line": 13,
                          "column": 28
                        }
                      }
                    }
                  ],
                  "range": [
                    344,
                    378
                  ],
                  "loc": {
                    "start": {
                      "line": 12,
                      "column": 34
                    },
                    "end": {
                      "line": 14,
                      "column": 3
                    }
                  }
                },
                "generator": false,
                "expression": false,
                "range": [
                  325,
                  378
                ],
                "loc": {
                  "start": {
                    "line": 12,
                    "column": 15
                  },
                  "end": {
                    "line": 14,
                    "column": 3
                  }
                }
              },
              "kind": "method",
              "computed": false,
              "range": [
                312,
                378
              ],
              "loc": {
                "start": {
                  "line": 12,
                  "column": 2
                },
                "end": {
                  "line": 14,
                  "column": 3
                }
              },
              "static": false
            }
          ],
          "range": [
            252,
            380
          ],
          "loc": {
            "start": {
              "line": 8,
              "column": 56
            },
            "end": {
              "line": 15,
              "column": 1
            }
          }
        },
        "range": [
          211,
          380
        ],
        "loc": {
          "start": {
            "line": 8,
            "column": 15
          },
          "end": {
            "line": 15,
            "column": 1
          }
        },
        "leadingComments": [
          {
            "type": "Block",
            "value": "*\n * A collector that captures `sumOfRecipricals`\n *   - The total of all the recipricals of the data values.\n *     (1/x1 + 1/x2 + 1/x3 + ... + 1/xn)\n ",
            "range": [
              39,
              195
            ],
            "loc": {
              "start": {
                "line": 3,
                "column": 0
              },
              "end": {
                "line": 7,
                "column": 3
              }
            }
          }
        ],
        "trailingComments": []
      },
      "range": [
        196,
        380
      ],
      "loc": {
        "start": {
          "line": 8,
          "column": 0
        },
        "end": {
          "line": 15,
          "column": 1
        }
      },
      "leadingComments": [
        {
          "type": "Block",
          "value": "*\n * A collector that captures `sumOfRecipricals`\n *   - The total of all the recipricals of the data values.\n *     (1/x1 + 1/x2 + 1/x3 + ... + 1/xn)\n ",
          "range": [
            39,
            195
          ],
          "loc": {
            "start": {
              "line": 3,
              "column": 0
            },
            "end": {
              "line": 7,
              "column": 3
            }
          }
        }
      ]
    }
  ],
  "sourceType": "module",
  "range": [
    0,
    380
  ],
  "loc": {
    "start": {
      "line": 1,
      "column": 0
    },
    "end": {
      "line": 15,
      "column": 1
    }
  },
  "comments": [
    {
      "type": "Block",
      "value": "*\n * A collector that captures `sumOfRecipricals`\n *   - The total of all the recipricals of the data values.\n *     (1/x1 + 1/x2 + 1/x3 + ... + 1/xn)\n ",
      "range": [
        39,
        195
      ],
      "loc": {
        "start": {
          "line": 3,
          "column": 0
        },
        "end": {
          "line": 7,
          "column": 3
        }
      }
    }
  ]
}