{
  "type": "Program",
  "body": [
    {
      "type": "ImportDeclaration",
      "specifiers": [
        {
          "type": "ImportNamespaceSpecifier",
          "local": {
            "type": "Identifier",
            "name": "collectors",
            "range": [
              12,
              22
            ],
            "loc": {
              "start": {
                "line": 1,
                "column": 12
              },
              "end": {
                "line": 1,
                "column": 22
              }
            }
          },
          "range": [
            7,
            22
          ],
          "loc": {
            "start": {
              "line": 1,
              "column": 7
            },
            "end": {
              "line": 1,
              "column": 22
            }
          }
        }
      ],
      "source": {
        "type": "Literal",
        "value": "./helpers/collectors",
        "raw": "'./helpers/collectors'",
        "range": [
          28,
          50
        ],
        "loc": {
          "start": {
            "line": 1,
            "column": 28
          },
          "end": {
            "line": 1,
            "column": 50
          }
        }
      },
      "range": [
        0,
        51
      ],
      "loc": {
        "start": {
          "line": 1,
          "column": 0
        },
        "end": {
          "line": 1,
          "column": 51
        }
      }
    },
    {
      "type": "ImportDeclaration",
      "specifiers": [
        {
          "type": "ImportNamespaceSpecifier",
          "local": {
            "type": "Identifier",
            "name": "filters",
            "range": [
              64,
              71
            ],
            "loc": {
              "start": {
                "line": 2,
                "column": 12
              },
              "end": {
                "line": 2,
                "column": 19
              }
            }
          },
          "range": [
            59,
            71
          ],
          "loc": {
            "start": {
              "line": 2,
              "column": 7
            },
            "end": {
              "line": 2,
              "column": 19
            }
          }
        }
      ],
      "source": {
        "type": "Literal",
        "value": "./helpers/filters",
        "raw": "'./helpers/filters'",
        "range": [
          77,
          96
        ],
        "loc": {
          "start": {
            "line": 2,
            "column": 25
          },
          "end": {
            "line": 2,
            "column": 44
          }
        }
      },
      "range": [
        52,
        97
      ],
      "loc": {
        "start": {
          "line": 2,
          "column": 0
        },
        "end": {
          "line": 2,
          "column": 45
        }
      }
    },
    {
      "type": "ImportDeclaration",
      "specifiers": [
        {
          "type": "ImportDefaultSpecifier",
          "local": {
            "type": "Identifier",
            "name": "StatsCollector",
            "range": [
              105,
              119
            ],
            "loc": {
              "start": {
                "line": 3,
                "column": 7
              },
              "end": {
                "line": 3,
                "column": 21
              }
            }
          },
          "range": [
            105,
            119
          ],
          "loc": {
            "start": {
              "line": 3,
              "column": 7
            },
            "end": {
              "line": 3,
              "column": 21
            }
          }
        }
      ],
      "source": {
        "type": "Literal",
        "value": "./StatsCollector",
        "raw": "'./StatsCollector'",
        "range": [
          125,
          143
        ],
        "loc": {
          "start": {
            "line": 3,
            "column": 27
          },
          "end": {
            "line": 3,
            "column": 45
          }
        }
      },
      "range": [
        98,
        144
      ],
      "loc": {
        "start": {
          "line": 3,
          "column": 0
        },
        "end": {
          "line": 3,
          "column": 46
        }
      },
      "trailingComments": [
        {
          "type": "Block",
          "value": "*\n* A stat collector that includes the following collector functions:\n *   - count\n *   - sum\n *   - min\n *   - max\n *   - mean\n *   - powerSumAvg_running\n *   - variance_running\n *   - standardDeviation_running\n *   - sumOfSquaredDeviations_stable\n *   - variance_stable\n *   - standardDeviation_stable\n *   - count_* (a bunch of filtered counts)\n * @example\n * const statsCollector = new AdvancedStatsCollector();\n * statsCollector.update([1, 2, 3, 4, 5]);\n * statsCollector.get();\n ",
          "range": [
            146,
            635
          ],
          "loc": {
            "start": {
              "line": 5,
              "column": 0
            },
            "end": {
              "line": 23,
              "column": 3
            }
          }
        }
      ]
    },
    {
      "type": "ExportDefaultDeclaration",
      "declaration": {
        "type": "ClassDeclaration",
        "id": {
          "type": "Identifier",
          "name": "AdvancedStatsCollector",
          "range": [
            657,
            679
          ],
          "loc": {
            "start": {
              "line": 24,
              "column": 21
            },
            "end": {
              "line": 24,
              "column": 43
            }
          }
        },
        "superClass": {
          "type": "Identifier",
          "name": "StatsCollector",
          "range": [
            688,
            702
          ],
          "loc": {
            "start": {
              "line": 24,
              "column": 52
            },
            "end": {
              "line": 24,
              "column": 66
            }
          }
        },
        "body": {
          "type": "ClassBody",
          "body": [
            {
              "type": "MethodDefinition",
              "key": {
                "type": "Identifier",
                "name": "constructor",
                "range": [
                  707,
                  718
                ],
                "loc": {
                  "start": {
                    "line": 25,
                    "column": 2
                  },
                  "end": {
                    "line": 25,
                    "column": 13
                  }
                }
              },
              "value": {
                "type": "FunctionExpression",
                "id": null,
                "params": [],
                "body": {
                  "type": "BlockStatement",
                  "body": [
                    {
                      "type": "ExpressionStatement",
                      "expression": {
                        "type": "CallExpression",
                        "callee": {
                          "type": "Super",
                          "range": [
                            727,
                            732
                          ],
                          "loc": {
                            "start": {
                              "line": 26,
                              "column": 4
                            },
                            "end": {
                              "line": 26,
                              "column": 9
                            }
                          }
                        },
                        "arguments": [],
                        "range": [
                          727,
                          734
                        ],
                        "loc": {
                          "start": {
                            "line": 26,
                            "column": 4
                          },
                          "end": {
                            "line": 26,
                            "column": 11
                          }
                        }
                      },
                      "range": [
                        727,
                        735
                      ],
                      "loc": {
                        "start": {
                          "line": 26,
                          "column": 4
                        },
                        "end": {
                          "line": 26,
                          "column": 12
                        }
                      }
                    },
                    {
                      "type": "ExpressionStatement",
                      "expression": {
                        "type": "CallExpression",
                        "callee": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "ThisExpression",
                            "range": [
                              740,
                              744
                            ],
                            "loc": {
                              "start": {
                                "line": 27,
                                "column": 4
                              },
                              "end": {
                                "line": 27,
                                "column": 8
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "addCollector",
                            "range": [
                              745,
                              757
                            ],
                            "loc": {
                              "start": {
                                "line": 27,
                                "column": 9
                              },
                              "end": {
                                "line": 27,
                                "column": 21
                              }
                            }
                          },
                          "range": [
                            740,
                            757
                          ],
                          "loc": {
                            "start": {
                              "line": 27,
                              "column": 4
                            },
                            "end": {
                              "line": 27,
                              "column": 21
                            }
                          }
                        },
                        "arguments": [
                          {
                            "type": "CallExpression",
                            "callee": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "Identifier",
                                "name": "collectors",
                                "range": [
                                  758,
                                  768
                                ],
                                "loc": {
                                  "start": {
                                    "line": 27,
                                    "column": 22
                                  },
                                  "end": {
                                    "line": 27,
                                    "column": 32
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "values",
                                "range": [
                                  769,
                                  775
                                ],
                                "loc": {
                                  "start": {
                                    "line": 27,
                                    "column": 33
                                  },
                                  "end": {
                                    "line": 27,
                                    "column": 39
                                  }
                                }
                              },
                              "range": [
                                758,
                                775
                              ],
                              "loc": {
                                "start": {
                                  "line": 27,
                                  "column": 22
                                },
                                "end": {
                                  "line": 27,
                                  "column": 39
                                }
                              }
                            },
                            "arguments": [],
                            "range": [
                              758,
                              777
                            ],
                            "loc": {
                              "start": {
                                "line": 27,
                                "column": 22
                              },
                              "end": {
                                "line": 27,
                                "column": 41
                              }
                            }
                          }
                        ],
                        "range": [
                          740,
                          778
                        ],
                        "loc": {
                          "start": {
                            "line": 27,
                            "column": 4
                          },
                          "end": {
                            "line": 27,
                            "column": 42
                          }
                        }
                      },
                      "range": [
                        740,
                        779
                      ],
                      "loc": {
                        "start": {
                          "line": 27,
                          "column": 4
                        },
                        "end": {
                          "line": 27,
                          "column": 43
                        }
                      }
                    },
                    {
                      "type": "ExpressionStatement",
                      "expression": {
                        "type": "CallExpression",
                        "callee": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "ThisExpression",
                            "range": [
                              784,
                              788
                            ],
                            "loc": {
                              "start": {
                                "line": 28,
                                "column": 4
                              },
                              "end": {
                                "line": 28,
                                "column": 8
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "addCollector",
                            "range": [
                              789,
                              801
                            ],
                            "loc": {
                              "start": {
                                "line": 28,
                                "column": 9
                              },
                              "end": {
                                "line": 28,
                                "column": 21
                              }
                            }
                          },
                          "range": [
                            784,
                            801
                          ],
                          "loc": {
                            "start": {
                              "line": 28,
                              "column": 4
                            },
                            "end": {
                              "line": 28,
                              "column": 21
                            }
                          }
                        },
                        "arguments": [
                          {
                            "type": "CallExpression",
                            "callee": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "Identifier",
                                "name": "collectors",
                                "range": [
                                  802,
                                  812
                                ],
                                "loc": {
                                  "start": {
                                    "line": 28,
                                    "column": 22
                                  },
                                  "end": {
                                    "line": 28,
                                    "column": 32
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "sumOfSquaredDeviations_stable",
                                "range": [
                                  813,
                                  842
                                ],
                                "loc": {
                                  "start": {
                                    "line": 28,
                                    "column": 33
                                  },
                                  "end": {
                                    "line": 28,
                                    "column": 62
                                  }
                                }
                              },
                              "range": [
                                802,
                                842
                              ],
                              "loc": {
                                "start": {
                                  "line": 28,
                                  "column": 22
                                },
                                "end": {
                                  "line": 28,
                                  "column": 62
                                }
                              }
                            },
                            "arguments": [],
                            "range": [
                              802,
                              844
                            ],
                            "loc": {
                              "start": {
                                "line": 28,
                                "column": 22
                              },
                              "end": {
                                "line": 28,
                                "column": 64
                              }
                            }
                          }
                        ],
                        "range": [
                          784,
                          845
                        ],
                        "loc": {
                          "start": {
                            "line": 28,
                            "column": 4
                          },
                          "end": {
                            "line": 28,
                            "column": 65
                          }
                        }
                      },
                      "range": [
                        784,
                        846
                      ],
                      "loc": {
                        "start": {
                          "line": 28,
                          "column": 4
                        },
                        "end": {
                          "line": 28,
                          "column": 66
                        }
                      }
                    },
                    {
                      "type": "ExpressionStatement",
                      "expression": {
                        "type": "CallExpression",
                        "callee": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "ThisExpression",
                            "range": [
                              851,
                              855
                            ],
                            "loc": {
                              "start": {
                                "line": 29,
                                "column": 4
                              },
                              "end": {
                                "line": 29,
                                "column": 8
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "addCollector",
                            "range": [
                              856,
                              868
                            ],
                            "loc": {
                              "start": {
                                "line": 29,
                                "column": 9
                              },
                              "end": {
                                "line": 29,
                                "column": 21
                              }
                            }
                          },
                          "range": [
                            851,
                            868
                          ],
                          "loc": {
                            "start": {
                              "line": 29,
                              "column": 4
                            },
                            "end": {
                              "line": 29,
                              "column": 21
                            }
                          }
                        },
                        "arguments": [
                          {
                            "type": "CallExpression",
                            "callee": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "Identifier",
                                "name": "collectors",
                                "range": [
                                  869,
                                  879
                                ],
                                "loc": {
                                  "start": {
                                    "line": 29,
                                    "column": 22
                                  },
                                  "end": {
                                    "line": 29,
                                    "column": 32
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "variance_stable",
                                "range": [
                                  880,
                                  895
                                ],
                                "loc": {
                                  "start": {
                                    "line": 29,
                                    "column": 33
                                  },
                                  "end": {
                                    "line": 29,
                                    "column": 48
                                  }
                                }
                              },
                              "range": [
                                869,
                                895
                              ],
                              "loc": {
                                "start": {
                                  "line": 29,
                                  "column": 22
                                },
                                "end": {
                                  "line": 29,
                                  "column": 48
                                }
                              }
                            },
                            "arguments": [],
                            "range": [
                              869,
                              897
                            ],
                            "loc": {
                              "start": {
                                "line": 29,
                                "column": 22
                              },
                              "end": {
                                "line": 29,
                                "column": 50
                              }
                            }
                          }
                        ],
                        "range": [
                          851,
                          898
                        ],
                        "loc": {
                          "start": {
                            "line": 29,
                            "column": 4
                          },
                          "end": {
                            "line": 29,
                            "column": 51
                          }
                        }
                      },
                      "range": [
                        851,
                        899
                      ],
                      "loc": {
                        "start": {
                          "line": 29,
                          "column": 4
                        },
                        "end": {
                          "line": 29,
                          "column": 52
                        }
                      }
                    },
                    {
                      "type": "ExpressionStatement",
                      "expression": {
                        "type": "CallExpression",
                        "callee": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "ThisExpression",
                            "range": [
                              904,
                              908
                            ],
                            "loc": {
                              "start": {
                                "line": 30,
                                "column": 4
                              },
                              "end": {
                                "line": 30,
                                "column": 8
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "addCollector",
                            "range": [
                              909,
                              921
                            ],
                            "loc": {
                              "start": {
                                "line": 30,
                                "column": 9
                              },
                              "end": {
                                "line": 30,
                                "column": 21
                              }
                            }
                          },
                          "range": [
                            904,
                            921
                          ],
                          "loc": {
                            "start": {
                              "line": 30,
                              "column": 4
                            },
                            "end": {
                              "line": 30,
                              "column": 21
                            }
                          }
                        },
                        "arguments": [
                          {
                            "type": "CallExpression",
                            "callee": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "Identifier",
                                "name": "collectors",
                                "range": [
                                  922,
                                  932
                                ],
                                "loc": {
                                  "start": {
                                    "line": 30,
                                    "column": 22
                                  },
                                  "end": {
                                    "line": 30,
                                    "column": 32
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "standardDeviation_stable",
                                "range": [
                                  933,
                                  957
                                ],
                                "loc": {
                                  "start": {
                                    "line": 30,
                                    "column": 33
                                  },
                                  "end": {
                                    "line": 30,
                                    "column": 57
                                  }
                                }
                              },
                              "range": [
                                922,
                                957
                              ],
                              "loc": {
                                "start": {
                                  "line": 30,
                                  "column": 22
                                },
                                "end": {
                                  "line": 30,
                                  "column": 57
                                }
                              }
                            },
                            "arguments": [],
                            "range": [
                              922,
                              959
                            ],
                            "loc": {
                              "start": {
                                "line": 30,
                                "column": 22
                              },
                              "end": {
                                "line": 30,
                                "column": 59
                              }
                            }
                          }
                        ],
                        "range": [
                          904,
                          960
                        ],
                        "loc": {
                          "start": {
                            "line": 30,
                            "column": 4
                          },
                          "end": {
                            "line": 30,
                            "column": 60
                          }
                        }
                      },
                      "range": [
                        904,
                        961
                      ],
                      "loc": {
                        "start": {
                          "line": 30,
                          "column": 4
                        },
                        "end": {
                          "line": 30,
                          "column": 61
                        }
                      }
                    },
                    {
                      "type": "VariableDeclaration",
                      "declarations": [
                        {
                          "type": "VariableDeclarator",
                          "id": {
                            "type": "Identifier",
                            "name": "self",
                            "range": [
                              972,
                              976
                            ],
                            "loc": {
                              "start": {
                                "line": 31,
                                "column": 10
                              },
                              "end": {
                                "line": 31,
                                "column": 14
                              }
                            }
                          },
                          "init": {
                            "type": "ThisExpression",
                            "range": [
                              979,
                              983
                            ],
                            "loc": {
                              "start": {
                                "line": 31,
                                "column": 17
                              },
                              "end": {
                                "line": 31,
                                "column": 21
                              }
                            }
                          },
                          "range": [
                            972,
                            983
                          ],
                          "loc": {
                            "start": {
                              "line": 31,
                              "column": 10
                            },
                            "end": {
                              "line": 31,
                              "column": 21
                            }
                          }
                        }
                      ],
                      "kind": "const",
                      "range": [
                        966,
                        984
                      ],
                      "loc": {
                        "start": {
                          "line": 31,
                          "column": 4
                        },
                        "end": {
                          "line": 31,
                          "column": 22
                        }
                      }
                    },
                    {
                      "type": "ExpressionStatement",
                      "expression": {
                        "type": "CallExpression",
                        "callee": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "CallExpression",
                            "callee": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "Identifier",
                                "name": "Object",
                                "range": [
                                  989,
                                  995
                                ],
                                "loc": {
                                  "start": {
                                    "line": 32,
                                    "column": 4
                                  },
                                  "end": {
                                    "line": 32,
                                    "column": 10
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "keys",
                                "range": [
                                  996,
                                  1000
                                ],
                                "loc": {
                                  "start": {
                                    "line": 32,
                                    "column": 11
                                  },
                                  "end": {
                                    "line": 32,
                                    "column": 15
                                  }
                                }
                              },
                              "range": [
                                989,
                                1000
                              ],
                              "loc": {
                                "start": {
                                  "line": 32,
                                  "column": 4
                                },
                                "end": {
                                  "line": 32,
                                  "column": 15
                                }
                              }
                            },
                            "arguments": [
                              {
                                "type": "Identifier",
                                "name": "filters",
                                "range": [
                                  1001,
                                  1008
                                ],
                                "loc": {
                                  "start": {
                                    "line": 32,
                                    "column": 16
                                  },
                                  "end": {
                                    "line": 32,
                                    "column": 23
                                  }
                                }
                              }
                            ],
                            "range": [
                              989,
                              1009
                            ],
                            "loc": {
                              "start": {
                                "line": 32,
                                "column": 4
                              },
                              "end": {
                                "line": 32,
                                "column": 24
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "forEach",
                            "range": [
                              1010,
                              1017
                            ],
                            "loc": {
                              "start": {
                                "line": 32,
                                "column": 25
                              },
                              "end": {
                                "line": 32,
                                "column": 32
                              }
                            }
                          },
                          "range": [
                            989,
                            1017
                          ],
                          "loc": {
                            "start": {
                              "line": 32,
                              "column": 4
                            },
                            "end": {
                              "line": 32,
                              "column": 32
                            }
                          }
                        },
                        "arguments": [
                          {
                            "type": "FunctionExpression",
                            "id": null,
                            "params": [
                              {
                                "type": "Identifier",
                                "name": "filterName",
                                "range": [
                                  1028,
                                  1038
                                ],
                                "loc": {
                                  "start": {
                                    "line": 32,
                                    "column": 43
                                  },
                                  "end": {
                                    "line": 32,
                                    "column": 53
                                  }
                                }
                              }
                            ],
                            "body": {
                              "type": "BlockStatement",
                              "body": [
                                {
                                  "type": "VariableDeclaration",
                                  "declarations": [
                                    {
                                      "type": "VariableDeclarator",
                                      "id": {
                                        "type": "Identifier",
                                        "name": "filter",
                                        "range": [
                                          1054,
                                          1060
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 33,
                                            "column": 12
                                          },
                                          "end": {
                                            "line": 33,
                                            "column": 18
                                          }
                                        }
                                      },
                                      "init": {
                                        "type": "MemberExpression",
                                        "computed": true,
                                        "object": {
                                          "type": "Identifier",
                                          "name": "filters",
                                          "range": [
                                            1063,
                                            1070
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 33,
                                              "column": 21
                                            },
                                            "end": {
                                              "line": 33,
                                              "column": 28
                                            }
                                          }
                                        },
                                        "property": {
                                          "type": "Identifier",
                                          "name": "filterName",
                                          "range": [
                                            1071,
                                            1081
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 33,
                                              "column": 29
                                            },
                                            "end": {
                                              "line": 33,
                                              "column": 39
                                            }
                                          }
                                        },
                                        "range": [
                                          1063,
                                          1082
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 33,
                                            "column": 21
                                          },
                                          "end": {
                                            "line": 33,
                                            "column": 40
                                          }
                                        }
                                      },
                                      "range": [
                                        1054,
                                        1082
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 33,
                                          "column": 12
                                        },
                                        "end": {
                                          "line": 33,
                                          "column": 40
                                        }
                                      }
                                    }
                                  ],
                                  "kind": "const",
                                  "range": [
                                    1048,
                                    1083
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 33,
                                      "column": 6
                                    },
                                    "end": {
                                      "line": 33,
                                      "column": 41
                                    }
                                  }
                                },
                                {
                                  "type": "ExpressionStatement",
                                  "expression": {
                                    "type": "CallExpression",
                                    "callee": {
                                      "type": "MemberExpression",
                                      "computed": false,
                                      "object": {
                                        "type": "Identifier",
                                        "name": "self",
                                        "range": [
                                          1090,
                                          1094
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 34,
                                            "column": 6
                                          },
                                          "end": {
                                            "line": 34,
                                            "column": 10
                                          }
                                        }
                                      },
                                      "property": {
                                        "type": "Identifier",
                                        "name": "addCollector",
                                        "range": [
                                          1095,
                                          1107
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 34,
                                            "column": 11
                                          },
                                          "end": {
                                            "line": 34,
                                            "column": 23
                                          }
                                        }
                                      },
                                      "range": [
                                        1090,
                                        1107
                                      ],
                                      "loc": {
                                        "start": {
                                          "line": 34,
                                          "column": 6
                                        },
                                        "end": {
                                          "line": 34,
                                          "column": 23
                                        }
                                      }
                                    },
                                    "arguments": [
                                      {
                                        "type": "CallExpression",
                                        "callee": {
                                          "type": "MemberExpression",
                                          "computed": false,
                                          "object": {
                                            "type": "Identifier",
                                            "name": "collectors",
                                            "range": [
                                              1108,
                                              1118
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 34,
                                                "column": 24
                                              },
                                              "end": {
                                                "line": 34,
                                                "column": 34
                                              }
                                            }
                                          },
                                          "property": {
                                            "type": "Identifier",
                                            "name": "filteredCount",
                                            "range": [
                                              1119,
                                              1132
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 34,
                                                "column": 35
                                              },
                                              "end": {
                                                "line": 34,
                                                "column": 48
                                              }
                                            }
                                          },
                                          "range": [
                                            1108,
                                            1132
                                          ],
                                          "loc": {
                                            "start": {
                                              "line": 34,
                                              "column": 24
                                            },
                                            "end": {
                                              "line": 34,
                                              "column": 48
                                            }
                                          }
                                        },
                                        "arguments": [
                                          {
                                            "type": "TemplateLiteral",
                                            "quasis": [
                                              {
                                                "type": "TemplateElement",
                                                "value": {
                                                  "raw": "count_",
                                                  "cooked": "count_"
                                                },
                                                "tail": false,
                                                "range": [
                                                  1133,
                                                  1142
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 34,
                                                    "column": 49
                                                  },
                                                  "end": {
                                                    "line": 34,
                                                    "column": 58
                                                  }
                                                }
                                              },
                                              {
                                                "type": "TemplateElement",
                                                "value": {
                                                  "raw": "",
                                                  "cooked": ""
                                                },
                                                "tail": true,
                                                "range": [
                                                  1152,
                                                  1154
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 34,
                                                    "column": 68
                                                  },
                                                  "end": {
                                                    "line": 34,
                                                    "column": 70
                                                  }
                                                }
                                              }
                                            ],
                                            "expressions": [
                                              {
                                                "type": "Identifier",
                                                "name": "filterName",
                                                "range": [
                                                  1142,
                                                  1152
                                                ],
                                                "loc": {
                                                  "start": {
                                                    "line": 34,
                                                    "column": 58
                                                  },
                                                  "end": {
                                                    "line": 34,
                                                    "column": 68
                                                  }
                                                }
                                              }
                                            ],
                                            "range": [
                                              1133,
                                              1154
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 34,
                                                "column": 49
                                              },
                                              "end": {
                                                "line": 34,
                                                "column": 70
                                              }
                                            }
                                          },
                                          {
                                            "type": "Identifier",
                                            "name": "filter",
                                            "range": [
                                              1156,
                                              1162
                                            ],
                                            "loc": {
                                              "start": {
                                                "line": 34,
                                                "column": 72
                                              },
                                              "end": {
                                                "line": 34,
                                                "column": 78
                                              }
                                            }
                                          }
                                        ],
                                        "range": [
                                          1108,
                                          1163
                                        ],
                                        "loc": {
                                          "start": {
                                            "line": 34,
                                            "column": 24
                                          },
                                          "end": {
                                            "line": 34,
                                            "column": 79
                                          }
                                        }
                                      }
                                    ],
                                    "range": [
                                      1090,
                                      1164
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 34,
                                        "column": 6
                                      },
                                      "end": {
                                        "line": 34,
                                        "column": 80
                                      }
                                    }
                                  },
                                  "range": [
                                    1090,
                                    1165
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 34,
                                      "column": 6
                                    },
                                    "end": {
                                      "line": 34,
                                      "column": 81
                                    }
                                  }
                                }
                              ],
                              "range": [
                                1040,
                                1171
                              ],
                              "loc": {
                                "start": {
                                  "line": 32,
                                  "column": 55
                                },
                                "end": {
                                  "line": 35,
                                  "column": 5
                                }
                              }
                            },
                            "generator": false,
                            "expression": false,
                            "range": [
                              1018,
                              1171
                            ],
                            "loc": {
                              "start": {
                                "line": 32,
                                "column": 33
                              },
                              "end": {
                                "line": 35,
                                "column": 5
                              }
                            }
                          }
                        ],
                        "range": [
                          989,
                          1172
                        ],
                        "loc": {
                          "start": {
                            "line": 32,
                            "column": 4
                          },
                          "end": {
                            "line": 35,
                            "column": 6
                          }
                        }
                      },
                      "range": [
                        989,
                        1173
                      ],
                      "loc": {
                        "start": {
                          "line": 32,
                          "column": 4
                        },
                        "end": {
                          "line": 35,
                          "column": 7
                        }
                      }
                    },
                    {
                      "type": "ExpressionStatement",
                      "expression": {
                        "type": "CallExpression",
                        "callee": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "ThisExpression",
                            "range": [
                              1178,
                              1182
                            ],
                            "loc": {
                              "start": {
                                "line": 36,
                                "column": 4
                              },
                              "end": {
                                "line": 36,
                                "column": 8
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "addIgnore",
                            "range": [
                              1183,
                              1192
                            ],
                            "loc": {
                              "start": {
                                "line": 36,
                                "column": 9
                              },
                              "end": {
                                "line": 36,
                                "column": 18
                              }
                            }
                          },
                          "range": [
                            1178,
                            1192
                          ],
                          "loc": {
                            "start": {
                              "line": 36,
                              "column": 4
                            },
                            "end": {
                              "line": 36,
                              "column": 18
                            }
                          }
                        },
                        "arguments": [
                          {
                            "type": "Literal",
                            "value": "values",
                            "raw": "'values'",
                            "range": [
                              1193,
                              1201
                            ],
                            "loc": {
                              "start": {
                                "line": 36,
                                "column": 19
                              },
                              "end": {
                                "line": 36,
                                "column": 27
                              }
                            }
                          }
                        ],
                        "range": [
                          1178,
                          1202
                        ],
                        "loc": {
                          "start": {
                            "line": 36,
                            "column": 4
                          },
                          "end": {
                            "line": 36,
                            "column": 28
                          }
                        }
                      },
                      "range": [
                        1178,
                        1203
                      ],
                      "loc": {
                        "start": {
                          "line": 36,
                          "column": 4
                        },
                        "end": {
                          "line": 36,
                          "column": 29
                        }
                      }
                    }
                  ],
                  "range": [
                    721,
                    1207
                  ],
                  "loc": {
                    "start": {
                      "line": 25,
                      "column": 16
                    },
                    "end": {
                      "line": 37,
                      "column": 3
                    }
                  }
                },
                "generator": false,
                "expression": false,
                "range": [
                  718,
                  1207
                ],
                "loc": {
                  "start": {
                    "line": 25,
                    "column": 13
                  },
                  "end": {
                    "line": 37,
                    "column": 3
                  }
                }
              },
              "kind": "constructor",
              "computed": false,
              "range": [
                707,
                1207
              ],
              "loc": {
                "start": {
                  "line": 25,
                  "column": 2
                },
                "end": {
                  "line": 37,
                  "column": 3
                }
              },
              "static": false
            }
          ],
          "range": [
            703,
            1209
          ],
          "loc": {
            "start": {
              "line": 24,
              "column": 67
            },
            "end": {
              "line": 38,
              "column": 1
            }
          }
        },
        "range": [
          651,
          1209
        ],
        "loc": {
          "start": {
            "line": 24,
            "column": 15
          },
          "end": {
            "line": 38,
            "column": 1
          }
        },
        "leadingComments": [
          {
            "type": "Block",
            "value": "*\n* A stat collector that includes the following collector functions:\n *   - count\n *   - sum\n *   - min\n *   - max\n *   - mean\n *   - powerSumAvg_running\n *   - variance_running\n *   - standardDeviation_running\n *   - sumOfSquaredDeviations_stable\n *   - variance_stable\n *   - standardDeviation_stable\n *   - count_* (a bunch of filtered counts)\n * @example\n * const statsCollector = new AdvancedStatsCollector();\n * statsCollector.update([1, 2, 3, 4, 5]);\n * statsCollector.get();\n ",
            "range": [
              146,
              635
            ],
            "loc": {
              "start": {
                "line": 5,
                "column": 0
              },
              "end": {
                "line": 23,
                "column": 3
              }
            }
          }
        ],
        "trailingComments": []
      },
      "range": [
        636,
        1209
      ],
      "loc": {
        "start": {
          "line": 24,
          "column": 0
        },
        "end": {
          "line": 38,
          "column": 1
        }
      },
      "leadingComments": [
        {
          "type": "Block",
          "value": "*\n* A stat collector that includes the following collector functions:\n *   - count\n *   - sum\n *   - min\n *   - max\n *   - mean\n *   - powerSumAvg_running\n *   - variance_running\n *   - standardDeviation_running\n *   - sumOfSquaredDeviations_stable\n *   - variance_stable\n *   - standardDeviation_stable\n *   - count_* (a bunch of filtered counts)\n * @example\n * const statsCollector = new AdvancedStatsCollector();\n * statsCollector.update([1, 2, 3, 4, 5]);\n * statsCollector.get();\n ",
          "range": [
            146,
            635
          ],
          "loc": {
            "start": {
              "line": 5,
              "column": 0
            },
            "end": {
              "line": 23,
              "column": 3
            }
          }
        }
      ]
    }
  ],
  "sourceType": "module",
  "range": [
    0,
    1209
  ],
  "loc": {
    "start": {
      "line": 1,
      "column": 0
    },
    "end": {
      "line": 38,
      "column": 1
    }
  },
  "comments": [
    {
      "type": "Block",
      "value": "*\n* A stat collector that includes the following collector functions:\n *   - count\n *   - sum\n *   - min\n *   - max\n *   - mean\n *   - powerSumAvg_running\n *   - variance_running\n *   - standardDeviation_running\n *   - sumOfSquaredDeviations_stable\n *   - variance_stable\n *   - standardDeviation_stable\n *   - count_* (a bunch of filtered counts)\n * @example\n * const statsCollector = new AdvancedStatsCollector();\n * statsCollector.update([1, 2, 3, 4, 5]);\n * statsCollector.get();\n ",
      "range": [
        146,
        635
      ],
      "loc": {
        "start": {
          "line": 5,
          "column": 0
        },
        "end": {
          "line": 23,
          "column": 3
        }
      }
    }
  ]
}