{
  "type": "Program",
  "body": [
    {
      "type": "ImportDeclaration",
      "specifiers": [
        {
          "type": "ImportDefaultSpecifier",
          "local": {
            "type": "Identifier",
            "name": "StackEmptyError",
            "range": [
              7,
              22
            ],
            "loc": {
              "start": {
                "line": 1,
                "column": 7
              },
              "end": {
                "line": 1,
                "column": 22
              }
            }
          },
          "range": [
            7,
            22
          ],
          "loc": {
            "start": {
              "line": 1,
              "column": 7
            },
            "end": {
              "line": 1,
              "column": 22
            }
          }
        }
      ],
      "source": {
        "type": "Literal",
        "value": "./StackEmptyError",
        "raw": "'./StackEmptyError'",
        "range": [
          28,
          47
        ],
        "loc": {
          "start": {
            "line": 1,
            "column": 28
          },
          "end": {
            "line": 1,
            "column": 47
          }
        }
      },
      "range": [
        0,
        48
      ],
      "loc": {
        "start": {
          "line": 1,
          "column": 0
        },
        "end": {
          "line": 1,
          "column": 48
        }
      },
      "trailingComments": [
        {
          "type": "Block",
          "value": "*\n * Stack: LIFO data structure\n * Usage: let stack = new Stack();\n *        stack.push('A');\n *        stack.push('B');\n *        stack.pop();  => B'\n ",
          "range": [
            50,
            206
          ],
          "loc": {
            "start": {
              "line": 3,
              "column": 0
            },
            "end": {
              "line": 9,
              "column": 3
            }
          }
        }
      ]
    },
    {
      "type": "Identifier",
      "id": {
        "type": "Identifier",
        "name": "Stack",
        "range": [
          213,
          218
        ],
        "loc": {
          "start": {
            "line": 10,
            "column": 6
          },
          "end": {
            "line": 10,
            "column": 11
          }
        }
      },
      "superClass": null,
      "body": {
        "type": "ClassBody",
        "body": [
          {
            "type": "MethodDefinition",
            "key": {
              "type": "Identifier",
              "name": "constructor",
              "range": [
                223,
                234
              ],
              "loc": {
                "start": {
                  "line": 11,
                  "column": 2
                },
                "end": {
                  "line": 11,
                  "column": 13
                }
              }
            },
            "value": {
              "type": "FunctionExpression",
              "id": null,
              "params": [],
              "body": {
                "type": "BlockStatement",
                "body": [
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "AssignmentExpression",
                      "operator": "=",
                      "left": {
                        "type": "MemberExpression",
                        "computed": false,
                        "object": {
                          "type": "ThisExpression",
                          "range": [
                            242,
                            246
                          ],
                          "loc": {
                            "start": {
                              "line": 12,
                              "column": 4
                            },
                            "end": {
                              "line": 12,
                              "column": 8
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "_items",
                          "range": [
                            247,
                            253
                          ],
                          "loc": {
                            "start": {
                              "line": 12,
                              "column": 9
                            },
                            "end": {
                              "line": 12,
                              "column": 15
                            }
                          }
                        },
                        "range": [
                          242,
                          253
                        ],
                        "loc": {
                          "start": {
                            "line": 12,
                            "column": 4
                          },
                          "end": {
                            "line": 12,
                            "column": 15
                          }
                        }
                      },
                      "right": {
                        "type": "ArrayExpression",
                        "elements": [],
                        "range": [
                          256,
                          258
                        ],
                        "loc": {
                          "start": {
                            "line": 12,
                            "column": 18
                          },
                          "end": {
                            "line": 12,
                            "column": 20
                          }
                        }
                      },
                      "range": [
                        242,
                        258
                      ],
                      "loc": {
                        "start": {
                          "line": 12,
                          "column": 4
                        },
                        "end": {
                          "line": 12,
                          "column": 20
                        }
                      }
                    },
                    "range": [
                      242,
                      259
                    ],
                    "loc": {
                      "start": {
                        "line": 12,
                        "column": 4
                      },
                      "end": {
                        "line": 12,
                        "column": 21
                      }
                    }
                  }
                ],
                "range": [
                  236,
                  263
                ],
                "loc": {
                  "start": {
                    "line": 11,
                    "column": 15
                  },
                  "end": {
                    "line": 13,
                    "column": 3
                  }
                }
              },
              "generator": false,
              "expression": false,
              "range": [
                234,
                263
              ],
              "loc": {
                "start": {
                  "line": 11,
                  "column": 13
                },
                "end": {
                  "line": 13,
                  "column": 3
                }
              }
            },
            "kind": "constructor",
            "computed": false,
            "range": [
              223,
              263
            ],
            "loc": {
              "start": {
                "line": 11,
                "column": 2
              },
              "end": {
                "line": 13,
                "column": 3
              }
            },
            "trailingComments": [
              {
                "type": "Block",
                "value": "*\n   * Appends an item to the top of the Stack.\n   * @param {item} value to push onto the top of the Stack\n   * @return {void}\n   ",
                "range": [
                  267,
                  401
                ],
                "loc": {
                  "start": {
                    "line": 15,
                    "column": 2
                  },
                  "end": {
                    "line": 19,
                    "column": 5
                  }
                }
              }
            ],
            "static": false
          },
          {
            "type": "MethodDefinition",
            "key": {
              "type": "Identifier",
              "name": "push",
              "range": [
                404,
                408
              ],
              "loc": {
                "start": {
                  "line": 20,
                  "column": 2
                },
                "end": {
                  "line": 20,
                  "column": 6
                }
              }
            },
            "value": {
              "type": "FunctionExpression",
              "id": null,
              "params": [
                {
                  "type": "Identifier",
                  "name": "item",
                  "range": [
                    409,
                    413
                  ],
                  "loc": {
                    "start": {
                      "line": 20,
                      "column": 7
                    },
                    "end": {
                      "line": 20,
                      "column": 11
                    }
                  }
                }
              ],
              "body": {
                "type": "BlockStatement",
                "body": [
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "CallExpression",
                      "callee": {
                        "type": "MemberExpression",
                        "computed": false,
                        "object": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "ThisExpression",
                            "range": [
                              420,
                              424
                            ],
                            "loc": {
                              "start": {
                                "line": 21,
                                "column": 4
                              },
                              "end": {
                                "line": 21,
                                "column": 8
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "_items",
                            "range": [
                              425,
                              431
                            ],
                            "loc": {
                              "start": {
                                "line": 21,
                                "column": 9
                              },
                              "end": {
                                "line": 21,
                                "column": 15
                              }
                            }
                          },
                          "range": [
                            420,
                            431
                          ],
                          "loc": {
                            "start": {
                              "line": 21,
                              "column": 4
                            },
                            "end": {
                              "line": 21,
                              "column": 15
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "push",
                          "range": [
                            432,
                            436
                          ],
                          "loc": {
                            "start": {
                              "line": 21,
                              "column": 16
                            },
                            "end": {
                              "line": 21,
                              "column": 20
                            }
                          }
                        },
                        "range": [
                          420,
                          436
                        ],
                        "loc": {
                          "start": {
                            "line": 21,
                            "column": 4
                          },
                          "end": {
                            "line": 21,
                            "column": 20
                          }
                        }
                      },
                      "arguments": [
                        {
                          "type": "Identifier",
                          "name": "item",
                          "range": [
                            437,
                            441
                          ],
                          "loc": {
                            "start": {
                              "line": 21,
                              "column": 21
                            },
                            "end": {
                              "line": 21,
                              "column": 25
                            }
                          }
                        }
                      ],
                      "range": [
                        420,
                        442
                      ],
                      "loc": {
                        "start": {
                          "line": 21,
                          "column": 4
                        },
                        "end": {
                          "line": 21,
                          "column": 26
                        }
                      }
                    },
                    "range": [
                      420,
                      443
                    ],
                    "loc": {
                      "start": {
                        "line": 21,
                        "column": 4
                      },
                      "end": {
                        "line": 21,
                        "column": 27
                      }
                    }
                  }
                ],
                "range": [
                  414,
                  447
                ],
                "loc": {
                  "start": {
                    "line": 20,
                    "column": 12
                  },
                  "end": {
                    "line": 22,
                    "column": 3
                  }
                }
              },
              "generator": false,
              "expression": false,
              "range": [
                408,
                447
              ],
              "loc": {
                "start": {
                  "line": 20,
                  "column": 6
                },
                "end": {
                  "line": 22,
                  "column": 3
                }
              }
            },
            "kind": "method",
            "computed": false,
            "range": [
              404,
              447
            ],
            "loc": {
              "start": {
                "line": 20,
                "column": 2
              },
              "end": {
                "line": 22,
                "column": 3
              }
            },
            "leadingComments": [
              {
                "type": "Block",
                "value": "*\n   * Appends an item to the top of the Stack.\n   * @param {item} value to push onto the top of the Stack\n   * @return {void}\n   ",
                "range": [
                  267,
                  401
                ],
                "loc": {
                  "start": {
                    "line": 15,
                    "column": 2
                  },
                  "end": {
                    "line": 19,
                    "column": 5
                  }
                }
              }
            ],
            "trailingComments": [
              {
                "type": "Block",
                "value": "*\n   * returns last value pushed onto Stack; modifies Stack items in-place\n   * @throws {StackEmptyError} if stack is empty.\n   * @return {<Item>} last value pushed onto Stack.\n   ",
                "range": [
                  451,
                  635
                ],
                "loc": {
                  "start": {
                    "line": 24,
                    "column": 2
                  },
                  "end": {
                    "line": 28,
                    "column": 5
                  }
                }
              }
            ],
            "static": false
          },
          {
            "type": "MethodDefinition",
            "key": {
              "type": "Identifier",
              "name": "pop",
              "range": [
                638,
                641
              ],
              "loc": {
                "start": {
                  "line": 29,
                  "column": 2
                },
                "end": {
                  "line": 29,
                  "column": 5
                }
              }
            },
            "value": {
              "type": "FunctionExpression",
              "id": null,
              "params": [],
              "body": {
                "type": "BlockStatement",
                "body": [
                  {
                    "type": "IfStatement",
                    "test": {
                      "type": "CallExpression",
                      "callee": {
                        "type": "MemberExpression",
                        "computed": false,
                        "object": {
                          "type": "ThisExpression",
                          "range": [
                            653,
                            657
                          ],
                          "loc": {
                            "start": {
                              "line": 30,
                              "column": 8
                            },
                            "end": {
                              "line": 30,
                              "column": 12
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "isEmpty",
                          "range": [
                            658,
                            665
                          ],
                          "loc": {
                            "start": {
                              "line": 30,
                              "column": 13
                            },
                            "end": {
                              "line": 30,
                              "column": 20
                            }
                          }
                        },
                        "range": [
                          653,
                          665
                        ],
                        "loc": {
                          "start": {
                            "line": 30,
                            "column": 8
                          },
                          "end": {
                            "line": 30,
                            "column": 20
                          }
                        }
                      },
                      "arguments": [],
                      "range": [
                        653,
                        667
                      ],
                      "loc": {
                        "start": {
                          "line": 30,
                          "column": 8
                        },
                        "end": {
                          "line": 30,
                          "column": 22
                        }
                      }
                    },
                    "consequent": {
                      "type": "BlockStatement",
                      "body": [
                        {
                          "type": "ThrowStatement",
                          "argument": {
                            "type": "NewExpression",
                            "callee": {
                              "type": "Identifier",
                              "name": "StackEmptyError",
                              "range": [
                                686,
                                701
                              ],
                              "loc": {
                                "start": {
                                  "line": 31,
                                  "column": 16
                                },
                                "end": {
                                  "line": 31,
                                  "column": 31
                                }
                              }
                            },
                            "arguments": [
                              {
                                "type": "Literal",
                                "value": "Cannot pop from empty stack",
                                "raw": "\"Cannot pop from empty stack\"",
                                "range": [
                                  702,
                                  731
                                ],
                                "loc": {
                                  "start": {
                                    "line": 31,
                                    "column": 32
                                  },
                                  "end": {
                                    "line": 31,
                                    "column": 61
                                  }
                                }
                              }
                            ],
                            "range": [
                              682,
                              732
                            ],
                            "loc": {
                              "start": {
                                "line": 31,
                                "column": 12
                              },
                              "end": {
                                "line": 31,
                                "column": 62
                              }
                            }
                          },
                          "range": [
                            676,
                            733
                          ],
                          "loc": {
                            "start": {
                              "line": 31,
                              "column": 6
                            },
                            "end": {
                              "line": 31,
                              "column": 63
                            }
                          }
                        }
                      ],
                      "range": [
                        668,
                        739
                      ],
                      "loc": {
                        "start": {
                          "line": 30,
                          "column": 23
                        },
                        "end": {
                          "line": 32,
                          "column": 5
                        }
                      }
                    },
                    "alternate": null,
                    "range": [
                      649,
                      739
                    ],
                    "loc": {
                      "start": {
                        "line": 30,
                        "column": 4
                      },
                      "end": {
                        "line": 32,
                        "column": 5
                      }
                    }
                  },
                  {
                    "type": "ReturnStatement",
                    "argument": {
                      "type": "MemberExpression",
                      "computed": true,
                      "object": {
                        "type": "CallExpression",
                        "callee": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "MemberExpression",
                            "computed": false,
                            "object": {
                              "type": "ThisExpression",
                              "range": [
                                751,
                                755
                              ],
                              "loc": {
                                "start": {
                                  "line": 33,
                                  "column": 11
                                },
                                "end": {
                                  "line": 33,
                                  "column": 15
                                }
                              }
                            },
                            "property": {
                              "type": "Identifier",
                              "name": "_items",
                              "range": [
                                756,
                                762
                              ],
                              "loc": {
                                "start": {
                                  "line": 33,
                                  "column": 16
                                },
                                "end": {
                                  "line": 33,
                                  "column": 22
                                }
                              }
                            },
                            "range": [
                              751,
                              762
                            ],
                            "loc": {
                              "start": {
                                "line": 33,
                                "column": 11
                              },
                              "end": {
                                "line": 33,
                                "column": 22
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "splice",
                            "range": [
                              763,
                              769
                            ],
                            "loc": {
                              "start": {
                                "line": 33,
                                "column": 23
                              },
                              "end": {
                                "line": 33,
                                "column": 29
                              }
                            }
                          },
                          "range": [
                            751,
                            769
                          ],
                          "loc": {
                            "start": {
                              "line": 33,
                              "column": 11
                            },
                            "end": {
                              "line": 33,
                              "column": 29
                            }
                          }
                        },
                        "arguments": [
                          {
                            "type": "BinaryExpression",
                            "operator": "-",
                            "left": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "MemberExpression",
                                "computed": false,
                                "object": {
                                  "type": "ThisExpression",
                                  "range": [
                                    770,
                                    774
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 33,
                                      "column": 30
                                    },
                                    "end": {
                                      "line": 33,
                                      "column": 34
                                    }
                                  }
                                },
                                "property": {
                                  "type": "Identifier",
                                  "name": "_items",
                                  "range": [
                                    775,
                                    781
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 33,
                                      "column": 35
                                    },
                                    "end": {
                                      "line": 33,
                                      "column": 41
                                    }
                                  }
                                },
                                "range": [
                                  770,
                                  781
                                ],
                                "loc": {
                                  "start": {
                                    "line": 33,
                                    "column": 30
                                  },
                                  "end": {
                                    "line": 33,
                                    "column": 41
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "length",
                                "range": [
                                  782,
                                  788
                                ],
                                "loc": {
                                  "start": {
                                    "line": 33,
                                    "column": 42
                                  },
                                  "end": {
                                    "line": 33,
                                    "column": 48
                                  }
                                }
                              },
                              "range": [
                                770,
                                788
                              ],
                              "loc": {
                                "start": {
                                  "line": 33,
                                  "column": 30
                                },
                                "end": {
                                  "line": 33,
                                  "column": 48
                                }
                              }
                            },
                            "right": {
                              "type": "Literal",
                              "value": 1,
                              "raw": "1",
                              "range": [
                                789,
                                790
                              ],
                              "loc": {
                                "start": {
                                  "line": 33,
                                  "column": 49
                                },
                                "end": {
                                  "line": 33,
                                  "column": 50
                                }
                              }
                            },
                            "range": [
                              770,
                              790
                            ],
                            "loc": {
                              "start": {
                                "line": 33,
                                "column": 30
                              },
                              "end": {
                                "line": 33,
                                "column": 50
                              }
                            }
                          }
                        ],
                        "range": [
                          751,
                          791
                        ],
                        "loc": {
                          "start": {
                            "line": 33,
                            "column": 11
                          },
                          "end": {
                            "line": 33,
                            "column": 51
                          }
                        }
                      },
                      "property": {
                        "type": "Literal",
                        "value": 0,
                        "raw": "0",
                        "range": [
                          792,
                          793
                        ],
                        "loc": {
                          "start": {
                            "line": 33,
                            "column": 52
                          },
                          "end": {
                            "line": 33,
                            "column": 53
                          }
                        }
                      },
                      "range": [
                        751,
                        794
                      ],
                      "loc": {
                        "start": {
                          "line": 33,
                          "column": 11
                        },
                        "end": {
                          "line": 33,
                          "column": 54
                        }
                      }
                    },
                    "range": [
                      744,
                      795
                    ],
                    "loc": {
                      "start": {
                        "line": 33,
                        "column": 4
                      },
                      "end": {
                        "line": 33,
                        "column": 55
                      }
                    }
                  }
                ],
                "range": [
                  643,
                  799
                ],
                "loc": {
                  "start": {
                    "line": 29,
                    "column": 7
                  },
                  "end": {
                    "line": 34,
                    "column": 3
                  }
                }
              },
              "generator": false,
              "expression": false,
              "range": [
                641,
                799
              ],
              "loc": {
                "start": {
                  "line": 29,
                  "column": 5
                },
                "end": {
                  "line": 34,
                  "column": 3
                }
              }
            },
            "kind": "method",
            "computed": false,
            "range": [
              638,
              799
            ],
            "loc": {
              "start": {
                "line": 29,
                "column": 2
              },
              "end": {
                "line": 34,
                "column": 3
              }
            },
            "leadingComments": [
              {
                "type": "Block",
                "value": "*\n   * returns last value pushed onto Stack; modifies Stack items in-place\n   * @throws {StackEmptyError} if stack is empty.\n   * @return {<Item>} last value pushed onto Stack.\n   ",
                "range": [
                  451,
                  635
                ],
                "loc": {
                  "start": {
                    "line": 24,
                    "column": 2
                  },
                  "end": {
                    "line": 28,
                    "column": 5
                  }
                }
              }
            ],
            "trailingComments": [
              {
                "type": "Block",
                "value": "*\n   * Gets number of items currently on the stack.\n   * @return {Number}\n   ",
                "range": [
                  803,
                  884
                ],
                "loc": {
                  "start": {
                    "line": 36,
                    "column": 2
                  },
                  "end": {
                    "line": 39,
                    "column": 5
                  }
                }
              }
            ],
            "static": false
          },
          {
            "type": "MethodDefinition",
            "key": {
              "type": "Identifier",
              "name": "count",
              "range": [
                887,
                892
              ],
              "loc": {
                "start": {
                  "line": 40,
                  "column": 2
                },
                "end": {
                  "line": 40,
                  "column": 7
                }
              }
            },
            "value": {
              "type": "FunctionExpression",
              "id": null,
              "params": [],
              "body": {
                "type": "BlockStatement",
                "body": [
                  {
                    "type": "ReturnStatement",
                    "argument": {
                      "type": "MemberExpression",
                      "computed": false,
                      "object": {
                        "type": "MemberExpression",
                        "computed": false,
                        "object": {
                          "type": "ThisExpression",
                          "range": [
                            907,
                            911
                          ],
                          "loc": {
                            "start": {
                              "line": 41,
                              "column": 11
                            },
                            "end": {
                              "line": 41,
                              "column": 15
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "_items",
                          "range": [
                            912,
                            918
                          ],
                          "loc": {
                            "start": {
                              "line": 41,
                              "column": 16
                            },
                            "end": {
                              "line": 41,
                              "column": 22
                            }
                          }
                        },
                        "range": [
                          907,
                          918
                        ],
                        "loc": {
                          "start": {
                            "line": 41,
                            "column": 11
                          },
                          "end": {
                            "line": 41,
                            "column": 22
                          }
                        }
                      },
                      "property": {
                        "type": "Identifier",
                        "name": "length",
                        "range": [
                          919,
                          925
                        ],
                        "loc": {
                          "start": {
                            "line": 41,
                            "column": 23
                          },
                          "end": {
                            "line": 41,
                            "column": 29
                          }
                        }
                      },
                      "range": [
                        907,
                        925
                      ],
                      "loc": {
                        "start": {
                          "line": 41,
                          "column": 11
                        },
                        "end": {
                          "line": 41,
                          "column": 29
                        }
                      }
                    },
                    "range": [
                      900,
                      926
                    ],
                    "loc": {
                      "start": {
                        "line": 41,
                        "column": 4
                      },
                      "end": {
                        "line": 41,
                        "column": 30
                      }
                    }
                  }
                ],
                "range": [
                  894,
                  930
                ],
                "loc": {
                  "start": {
                    "line": 40,
                    "column": 9
                  },
                  "end": {
                    "line": 42,
                    "column": 3
                  }
                }
              },
              "generator": false,
              "expression": false,
              "range": [
                892,
                930
              ],
              "loc": {
                "start": {
                  "line": 40,
                  "column": 7
                },
                "end": {
                  "line": 42,
                  "column": 3
                }
              }
            },
            "kind": "method",
            "computed": false,
            "range": [
              887,
              930
            ],
            "loc": {
              "start": {
                "line": 40,
                "column": 2
              },
              "end": {
                "line": 42,
                "column": 3
              }
            },
            "leadingComments": [
              {
                "type": "Block",
                "value": "*\n   * Gets number of items currently on the stack.\n   * @return {Number}\n   ",
                "range": [
                  803,
                  884
                ],
                "loc": {
                  "start": {
                    "line": 36,
                    "column": 2
                  },
                  "end": {
                    "line": 39,
                    "column": 5
                  }
                }
              }
            ],
            "trailingComments": [
              {
                "type": "Block",
                "value": "*\n   * Clears out all items from the Stack.\n   * @return {void}\n   ",
                "range": [
                  934,
                  1005
                ],
                "loc": {
                  "start": {
                    "line": 44,
                    "column": 2
                  },
                  "end": {
                    "line": 47,
                    "column": 5
                  }
                }
              }
            ],
            "static": false
          },
          {
            "type": "MethodDefinition",
            "key": {
              "type": "Identifier",
              "name": "clear",
              "range": [
                1008,
                1013
              ],
              "loc": {
                "start": {
                  "line": 48,
                  "column": 2
                },
                "end": {
                  "line": 48,
                  "column": 7
                }
              }
            },
            "value": {
              "type": "FunctionExpression",
              "id": null,
              "params": [],
              "body": {
                "type": "BlockStatement",
                "body": [
                  {
                    "type": "ExpressionStatement",
                    "expression": {
                      "type": "AssignmentExpression",
                      "operator": "=",
                      "left": {
                        "type": "MemberExpression",
                        "computed": false,
                        "object": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "ThisExpression",
                            "range": [
                              1021,
                              1025
                            ],
                            "loc": {
                              "start": {
                                "line": 49,
                                "column": 4
                              },
                              "end": {
                                "line": 49,
                                "column": 8
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "_items",
                            "range": [
                              1026,
                              1032
                            ],
                            "loc": {
                              "start": {
                                "line": 49,
                                "column": 9
                              },
                              "end": {
                                "line": 49,
                                "column": 15
                              }
                            }
                          },
                          "range": [
                            1021,
                            1032
                          ],
                          "loc": {
                            "start": {
                              "line": 49,
                              "column": 4
                            },
                            "end": {
                              "line": 49,
                              "column": 15
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "length",
                          "range": [
                            1033,
                            1039
                          ],
                          "loc": {
                            "start": {
                              "line": 49,
                              "column": 16
                            },
                            "end": {
                              "line": 49,
                              "column": 22
                            }
                          }
                        },
                        "range": [
                          1021,
                          1039
                        ],
                        "loc": {
                          "start": {
                            "line": 49,
                            "column": 4
                          },
                          "end": {
                            "line": 49,
                            "column": 22
                          }
                        }
                      },
                      "right": {
                        "type": "Literal",
                        "value": 0,
                        "raw": "0",
                        "range": [
                          1042,
                          1043
                        ],
                        "loc": {
                          "start": {
                            "line": 49,
                            "column": 25
                          },
                          "end": {
                            "line": 49,
                            "column": 26
                          }
                        }
                      },
                      "range": [
                        1021,
                        1043
                      ],
                      "loc": {
                        "start": {
                          "line": 49,
                          "column": 4
                        },
                        "end": {
                          "line": 49,
                          "column": 26
                        }
                      }
                    },
                    "range": [
                      1021,
                      1044
                    ],
                    "loc": {
                      "start": {
                        "line": 49,
                        "column": 4
                      },
                      "end": {
                        "line": 49,
                        "column": 27
                      }
                    }
                  }
                ],
                "range": [
                  1015,
                  1048
                ],
                "loc": {
                  "start": {
                    "line": 48,
                    "column": 9
                  },
                  "end": {
                    "line": 50,
                    "column": 3
                  }
                }
              },
              "generator": false,
              "expression": false,
              "range": [
                1013,
                1048
              ],
              "loc": {
                "start": {
                  "line": 48,
                  "column": 7
                },
                "end": {
                  "line": 50,
                  "column": 3
                }
              }
            },
            "kind": "method",
            "computed": false,
            "range": [
              1008,
              1048
            ],
            "loc": {
              "start": {
                "line": 48,
                "column": 2
              },
              "end": {
                "line": 50,
                "column": 3
              }
            },
            "leadingComments": [
              {
                "type": "Block",
                "value": "*\n   * Clears out all items from the Stack.\n   * @return {void}\n   ",
                "range": [
                  934,
                  1005
                ],
                "loc": {
                  "start": {
                    "line": 44,
                    "column": 2
                  },
                  "end": {
                    "line": 47,
                    "column": 5
                  }
                }
              }
            ],
            "trailingComments": [
              {
                "type": "Block",
                "value": "*\n   * Returns boolean value based on contents of stack.\n   * @return {Boolean} true if Stack is empty, otherwise false.\n   ",
                "range": [
                  1052,
                  1180
                ],
                "loc": {
                  "start": {
                    "line": 52,
                    "column": 2
                  },
                  "end": {
                    "line": 55,
                    "column": 5
                  }
                }
              }
            ],
            "static": false
          },
          {
            "type": "MethodDefinition",
            "key": {
              "type": "Identifier",
              "name": "isEmpty",
              "range": [
                1183,
                1190
              ],
              "loc": {
                "start": {
                  "line": 56,
                  "column": 2
                },
                "end": {
                  "line": 56,
                  "column": 9
                }
              }
            },
            "value": {
              "type": "FunctionExpression",
              "id": null,
              "params": [],
              "body": {
                "type": "BlockStatement",
                "body": [
                  {
                    "type": "ReturnStatement",
                    "argument": {
                      "type": "BinaryExpression",
                      "operator": "===",
                      "left": {
                        "type": "CallExpression",
                        "callee": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "ThisExpression",
                            "range": [
                              1205,
                              1209
                            ],
                            "loc": {
                              "start": {
                                "line": 57,
                                "column": 11
                              },
                              "end": {
                                "line": 57,
                                "column": 15
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "count",
                            "range": [
                              1210,
                              1215
                            ],
                            "loc": {
                              "start": {
                                "line": 57,
                                "column": 16
                              },
                              "end": {
                                "line": 57,
                                "column": 21
                              }
                            }
                          },
                          "range": [
                            1205,
                            1215
                          ],
                          "loc": {
                            "start": {
                              "line": 57,
                              "column": 11
                            },
                            "end": {
                              "line": 57,
                              "column": 21
                            }
                          }
                        },
                        "arguments": [],
                        "range": [
                          1205,
                          1217
                        ],
                        "loc": {
                          "start": {
                            "line": 57,
                            "column": 11
                          },
                          "end": {
                            "line": 57,
                            "column": 23
                          }
                        }
                      },
                      "right": {
                        "type": "Literal",
                        "value": 0,
                        "raw": "0",
                        "range": [
                          1222,
                          1223
                        ],
                        "loc": {
                          "start": {
                            "line": 57,
                            "column": 28
                          },
                          "end": {
                            "line": 57,
                            "column": 29
                          }
                        }
                      },
                      "range": [
                        1205,
                        1223
                      ],
                      "loc": {
                        "start": {
                          "line": 57,
                          "column": 11
                        },
                        "end": {
                          "line": 57,
                          "column": 29
                        }
                      }
                    },
                    "range": [
                      1198,
                      1224
                    ],
                    "loc": {
                      "start": {
                        "line": 57,
                        "column": 4
                      },
                      "end": {
                        "line": 57,
                        "column": 30
                      }
                    }
                  }
                ],
                "range": [
                  1192,
                  1228
                ],
                "loc": {
                  "start": {
                    "line": 56,
                    "column": 11
                  },
                  "end": {
                    "line": 58,
                    "column": 3
                  }
                }
              },
              "generator": false,
              "expression": false,
              "range": [
                1190,
                1228
              ],
              "loc": {
                "start": {
                  "line": 56,
                  "column": 9
                },
                "end": {
                  "line": 58,
                  "column": 3
                }
              }
            },
            "kind": "method",
            "computed": false,
            "range": [
              1183,
              1228
            ],
            "loc": {
              "start": {
                "line": 56,
                "column": 2
              },
              "end": {
                "line": 58,
                "column": 3
              }
            },
            "leadingComments": [
              {
                "type": "Block",
                "value": "*\n   * Returns boolean value based on contents of stack.\n   * @return {Boolean} true if Stack is empty, otherwise false.\n   ",
                "range": [
                  1052,
                  1180
                ],
                "loc": {
                  "start": {
                    "line": 52,
                    "column": 2
                  },
                  "end": {
                    "line": 55,
                    "column": 5
                  }
                }
              }
            ],
            "trailingComments": [
              {
                "type": "Block",
                "value": "*\n   * @return {String} string representation of the Stack structure\n   ",
                "range": [
                  1232,
                  1308
                ],
                "loc": {
                  "start": {
                    "line": 60,
                    "column": 2
                  },
                  "end": {
                    "line": 62,
                    "column": 5
                  }
                }
              }
            ],
            "static": false
          },
          {
            "type": "MethodDefinition",
            "key": {
              "type": "Identifier",
              "name": "print",
              "range": [
                1311,
                1316
              ],
              "loc": {
                "start": {
                  "line": 63,
                  "column": 2
                },
                "end": {
                  "line": 63,
                  "column": 7
                }
              }
            },
            "value": {
              "type": "FunctionExpression",
              "id": null,
              "params": [],
              "body": {
                "type": "BlockStatement",
                "body": [
                  {
                    "type": "ReturnStatement",
                    "argument": {
                      "type": "BinaryExpression",
                      "operator": "+",
                      "left": {
                        "type": "Literal",
                        "value": "Stack: ",
                        "raw": "\"Stack: \"",
                        "range": [
                          1331,
                          1340
                        ],
                        "loc": {
                          "start": {
                            "line": 64,
                            "column": 11
                          },
                          "end": {
                            "line": 64,
                            "column": 20
                          }
                        }
                      },
                      "right": {
                        "type": "CallExpression",
                        "callee": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "MemberExpression",
                            "computed": false,
                            "object": {
                              "type": "ThisExpression",
                              "range": [
                                1343,
                                1347
                              ],
                              "loc": {
                                "start": {
                                  "line": 64,
                                  "column": 23
                                },
                                "end": {
                                  "line": 64,
                                  "column": 27
                                }
                              }
                            },
                            "property": {
                              "type": "Identifier",
                              "name": "_items",
                              "range": [
                                1348,
                                1354
                              ],
                              "loc": {
                                "start": {
                                  "line": 64,
                                  "column": 28
                                },
                                "end": {
                                  "line": 64,
                                  "column": 34
                                }
                              }
                            },
                            "range": [
                              1343,
                              1354
                            ],
                            "loc": {
                              "start": {
                                "line": 64,
                                "column": 23
                              },
                              "end": {
                                "line": 64,
                                "column": 34
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "toString",
                            "range": [
                              1355,
                              1363
                            ],
                            "loc": {
                              "start": {
                                "line": 64,
                                "column": 35
                              },
                              "end": {
                                "line": 64,
                                "column": 43
                              }
                            }
                          },
                          "range": [
                            1343,
                            1363
                          ],
                          "loc": {
                            "start": {
                              "line": 64,
                              "column": 23
                            },
                            "end": {
                              "line": 64,
                              "column": 43
                            }
                          }
                        },
                        "arguments": [],
                        "range": [
                          1343,
                          1365
                        ],
                        "loc": {
                          "start": {
                            "line": 64,
                            "column": 23
                          },
                          "end": {
                            "line": 64,
                            "column": 45
                          }
                        }
                      },
                      "range": [
                        1331,
                        1365
                      ],
                      "loc": {
                        "start": {
                          "line": 64,
                          "column": 11
                        },
                        "end": {
                          "line": 64,
                          "column": 45
                        }
                      }
                    },
                    "range": [
                      1324,
                      1366
                    ],
                    "loc": {
                      "start": {
                        "line": 64,
                        "column": 4
                      },
                      "end": {
                        "line": 64,
                        "column": 46
                      }
                    }
                  }
                ],
                "range": [
                  1318,
                  1370
                ],
                "loc": {
                  "start": {
                    "line": 63,
                    "column": 9
                  },
                  "end": {
                    "line": 65,
                    "column": 3
                  }
                }
              },
              "generator": false,
              "expression": false,
              "range": [
                1316,
                1370
              ],
              "loc": {
                "start": {
                  "line": 63,
                  "column": 7
                },
                "end": {
                  "line": 65,
                  "column": 3
                }
              }
            },
            "kind": "method",
            "computed": false,
            "range": [
              1311,
              1370
            ],
            "loc": {
              "start": {
                "line": 63,
                "column": 2
              },
              "end": {
                "line": 65,
                "column": 3
              }
            },
            "leadingComments": [
              {
                "type": "Block",
                "value": "*\n   * @return {String} string representation of the Stack structure\n   ",
                "range": [
                  1232,
                  1308
                ],
                "loc": {
                  "start": {
                    "line": 60,
                    "column": 2
                  },
                  "end": {
                    "line": 62,
                    "column": 5
                  }
                }
              }
            ],
            "static": false
          }
        ],
        "range": [
          219,
          1372
        ],
        "loc": {
          "start": {
            "line": 10,
            "column": 12
          },
          "end": {
            "line": 66,
            "column": 1
          }
        }
      },
      "range": [
        207,
        1372
      ],
      "loc": {
        "start": {
          "line": 10,
          "column": 0
        },
        "end": {
          "line": 66,
          "column": 1
        }
      },
      "leadingComments": [],
      "name": "_",
      "trailingComments": []
    },
    {
      "type": "Identifier",
      "declaration": {
        "type": "Identifier",
        "name": "Stack",
        "range": [
          1389,
          1394
        ],
        "loc": {
          "start": {
            "line": 68,
            "column": 15
          },
          "end": {
            "line": 68,
            "column": 20
          }
        }
      },
      "range": [
        1374,
        1395
      ],
      "loc": {
        "start": {
          "line": 68,
          "column": 0
        },
        "end": {
          "line": 68,
          "column": 21
        }
      },
      "name": "_",
      "leadingComments": [],
      "trailingComments": []
    },
    {
      "type": "ExportDefaultDeclaration",
      "declaration": {
        "type": "ClassDeclaration",
        "id": {
          "type": "Identifier",
          "name": "Stack",
          "range": [
            213,
            218
          ],
          "loc": {
            "start": {
              "line": 10,
              "column": 6
            },
            "end": {
              "line": 10,
              "column": 11
            }
          }
        },
        "superClass": null,
        "body": {
          "type": "ClassBody",
          "body": [
            {
              "type": "MethodDefinition",
              "key": {
                "type": "Identifier",
                "name": "constructor",
                "range": [
                  223,
                  234
                ],
                "loc": {
                  "start": {
                    "line": 11,
                    "column": 2
                  },
                  "end": {
                    "line": 11,
                    "column": 13
                  }
                }
              },
              "value": {
                "type": "FunctionExpression",
                "id": null,
                "params": [],
                "body": {
                  "type": "BlockStatement",
                  "body": [
                    {
                      "type": "ExpressionStatement",
                      "expression": {
                        "type": "AssignmentExpression",
                        "operator": "=",
                        "left": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "ThisExpression",
                            "range": [
                              242,
                              246
                            ],
                            "loc": {
                              "start": {
                                "line": 12,
                                "column": 4
                              },
                              "end": {
                                "line": 12,
                                "column": 8
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "_items",
                            "range": [
                              247,
                              253
                            ],
                            "loc": {
                              "start": {
                                "line": 12,
                                "column": 9
                              },
                              "end": {
                                "line": 12,
                                "column": 15
                              }
                            }
                          },
                          "range": [
                            242,
                            253
                          ],
                          "loc": {
                            "start": {
                              "line": 12,
                              "column": 4
                            },
                            "end": {
                              "line": 12,
                              "column": 15
                            }
                          }
                        },
                        "right": {
                          "type": "ArrayExpression",
                          "elements": [],
                          "range": [
                            256,
                            258
                          ],
                          "loc": {
                            "start": {
                              "line": 12,
                              "column": 18
                            },
                            "end": {
                              "line": 12,
                              "column": 20
                            }
                          }
                        },
                        "range": [
                          242,
                          258
                        ],
                        "loc": {
                          "start": {
                            "line": 12,
                            "column": 4
                          },
                          "end": {
                            "line": 12,
                            "column": 20
                          }
                        }
                      },
                      "range": [
                        242,
                        259
                      ],
                      "loc": {
                        "start": {
                          "line": 12,
                          "column": 4
                        },
                        "end": {
                          "line": 12,
                          "column": 21
                        }
                      }
                    }
                  ],
                  "range": [
                    236,
                    263
                  ],
                  "loc": {
                    "start": {
                      "line": 11,
                      "column": 15
                    },
                    "end": {
                      "line": 13,
                      "column": 3
                    }
                  }
                },
                "generator": false,
                "expression": false,
                "range": [
                  234,
                  263
                ],
                "loc": {
                  "start": {
                    "line": 11,
                    "column": 13
                  },
                  "end": {
                    "line": 13,
                    "column": 3
                  }
                }
              },
              "kind": "constructor",
              "computed": false,
              "range": [
                223,
                263
              ],
              "loc": {
                "start": {
                  "line": 11,
                  "column": 2
                },
                "end": {
                  "line": 13,
                  "column": 3
                }
              },
              "trailingComments": [
                {
                  "type": "Block",
                  "value": "*\n   * Appends an item to the top of the Stack.\n   * @param {item} value to push onto the top of the Stack\n   * @return {void}\n   ",
                  "range": [
                    267,
                    401
                  ],
                  "loc": {
                    "start": {
                      "line": 15,
                      "column": 2
                    },
                    "end": {
                      "line": 19,
                      "column": 5
                    }
                  }
                }
              ],
              "static": false
            },
            {
              "type": "MethodDefinition",
              "key": {
                "type": "Identifier",
                "name": "push",
                "range": [
                  404,
                  408
                ],
                "loc": {
                  "start": {
                    "line": 20,
                    "column": 2
                  },
                  "end": {
                    "line": 20,
                    "column": 6
                  }
                }
              },
              "value": {
                "type": "FunctionExpression",
                "id": null,
                "params": [
                  {
                    "type": "Identifier",
                    "name": "item",
                    "range": [
                      409,
                      413
                    ],
                    "loc": {
                      "start": {
                        "line": 20,
                        "column": 7
                      },
                      "end": {
                        "line": 20,
                        "column": 11
                      }
                    }
                  }
                ],
                "body": {
                  "type": "BlockStatement",
                  "body": [
                    {
                      "type": "ExpressionStatement",
                      "expression": {
                        "type": "CallExpression",
                        "callee": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "MemberExpression",
                            "computed": false,
                            "object": {
                              "type": "ThisExpression",
                              "range": [
                                420,
                                424
                              ],
                              "loc": {
                                "start": {
                                  "line": 21,
                                  "column": 4
                                },
                                "end": {
                                  "line": 21,
                                  "column": 8
                                }
                              }
                            },
                            "property": {
                              "type": "Identifier",
                              "name": "_items",
                              "range": [
                                425,
                                431
                              ],
                              "loc": {
                                "start": {
                                  "line": 21,
                                  "column": 9
                                },
                                "end": {
                                  "line": 21,
                                  "column": 15
                                }
                              }
                            },
                            "range": [
                              420,
                              431
                            ],
                            "loc": {
                              "start": {
                                "line": 21,
                                "column": 4
                              },
                              "end": {
                                "line": 21,
                                "column": 15
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "push",
                            "range": [
                              432,
                              436
                            ],
                            "loc": {
                              "start": {
                                "line": 21,
                                "column": 16
                              },
                              "end": {
                                "line": 21,
                                "column": 20
                              }
                            }
                          },
                          "range": [
                            420,
                            436
                          ],
                          "loc": {
                            "start": {
                              "line": 21,
                              "column": 4
                            },
                            "end": {
                              "line": 21,
                              "column": 20
                            }
                          }
                        },
                        "arguments": [
                          {
                            "type": "Identifier",
                            "name": "item",
                            "range": [
                              437,
                              441
                            ],
                            "loc": {
                              "start": {
                                "line": 21,
                                "column": 21
                              },
                              "end": {
                                "line": 21,
                                "column": 25
                              }
                            }
                          }
                        ],
                        "range": [
                          420,
                          442
                        ],
                        "loc": {
                          "start": {
                            "line": 21,
                            "column": 4
                          },
                          "end": {
                            "line": 21,
                            "column": 26
                          }
                        }
                      },
                      "range": [
                        420,
                        443
                      ],
                      "loc": {
                        "start": {
                          "line": 21,
                          "column": 4
                        },
                        "end": {
                          "line": 21,
                          "column": 27
                        }
                      }
                    }
                  ],
                  "range": [
                    414,
                    447
                  ],
                  "loc": {
                    "start": {
                      "line": 20,
                      "column": 12
                    },
                    "end": {
                      "line": 22,
                      "column": 3
                    }
                  }
                },
                "generator": false,
                "expression": false,
                "range": [
                  408,
                  447
                ],
                "loc": {
                  "start": {
                    "line": 20,
                    "column": 6
                  },
                  "end": {
                    "line": 22,
                    "column": 3
                  }
                }
              },
              "kind": "method",
              "computed": false,
              "range": [
                404,
                447
              ],
              "loc": {
                "start": {
                  "line": 20,
                  "column": 2
                },
                "end": {
                  "line": 22,
                  "column": 3
                }
              },
              "leadingComments": [
                {
                  "type": "Block",
                  "value": "*\n   * Appends an item to the top of the Stack.\n   * @param {item} value to push onto the top of the Stack\n   * @return {void}\n   ",
                  "range": [
                    267,
                    401
                  ],
                  "loc": {
                    "start": {
                      "line": 15,
                      "column": 2
                    },
                    "end": {
                      "line": 19,
                      "column": 5
                    }
                  }
                }
              ],
              "trailingComments": [
                {
                  "type": "Block",
                  "value": "*\n   * returns last value pushed onto Stack; modifies Stack items in-place\n   * @throws {StackEmptyError} if stack is empty.\n   * @return {<Item>} last value pushed onto Stack.\n   ",
                  "range": [
                    451,
                    635
                  ],
                  "loc": {
                    "start": {
                      "line": 24,
                      "column": 2
                    },
                    "end": {
                      "line": 28,
                      "column": 5
                    }
                  }
                }
              ],
              "static": false
            },
            {
              "type": "MethodDefinition",
              "key": {
                "type": "Identifier",
                "name": "pop",
                "range": [
                  638,
                  641
                ],
                "loc": {
                  "start": {
                    "line": 29,
                    "column": 2
                  },
                  "end": {
                    "line": 29,
                    "column": 5
                  }
                }
              },
              "value": {
                "type": "FunctionExpression",
                "id": null,
                "params": [],
                "body": {
                  "type": "BlockStatement",
                  "body": [
                    {
                      "type": "IfStatement",
                      "test": {
                        "type": "CallExpression",
                        "callee": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "ThisExpression",
                            "range": [
                              653,
                              657
                            ],
                            "loc": {
                              "start": {
                                "line": 30,
                                "column": 8
                              },
                              "end": {
                                "line": 30,
                                "column": 12
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "isEmpty",
                            "range": [
                              658,
                              665
                            ],
                            "loc": {
                              "start": {
                                "line": 30,
                                "column": 13
                              },
                              "end": {
                                "line": 30,
                                "column": 20
                              }
                            }
                          },
                          "range": [
                            653,
                            665
                          ],
                          "loc": {
                            "start": {
                              "line": 30,
                              "column": 8
                            },
                            "end": {
                              "line": 30,
                              "column": 20
                            }
                          }
                        },
                        "arguments": [],
                        "range": [
                          653,
                          667
                        ],
                        "loc": {
                          "start": {
                            "line": 30,
                            "column": 8
                          },
                          "end": {
                            "line": 30,
                            "column": 22
                          }
                        }
                      },
                      "consequent": {
                        "type": "BlockStatement",
                        "body": [
                          {
                            "type": "ThrowStatement",
                            "argument": {
                              "type": "NewExpression",
                              "callee": {
                                "type": "Identifier",
                                "name": "StackEmptyError",
                                "range": [
                                  686,
                                  701
                                ],
                                "loc": {
                                  "start": {
                                    "line": 31,
                                    "column": 16
                                  },
                                  "end": {
                                    "line": 31,
                                    "column": 31
                                  }
                                }
                              },
                              "arguments": [
                                {
                                  "type": "Literal",
                                  "value": "Cannot pop from empty stack",
                                  "raw": "\"Cannot pop from empty stack\"",
                                  "range": [
                                    702,
                                    731
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 31,
                                      "column": 32
                                    },
                                    "end": {
                                      "line": 31,
                                      "column": 61
                                    }
                                  }
                                }
                              ],
                              "range": [
                                682,
                                732
                              ],
                              "loc": {
                                "start": {
                                  "line": 31,
                                  "column": 12
                                },
                                "end": {
                                  "line": 31,
                                  "column": 62
                                }
                              }
                            },
                            "range": [
                              676,
                              733
                            ],
                            "loc": {
                              "start": {
                                "line": 31,
                                "column": 6
                              },
                              "end": {
                                "line": 31,
                                "column": 63
                              }
                            }
                          }
                        ],
                        "range": [
                          668,
                          739
                        ],
                        "loc": {
                          "start": {
                            "line": 30,
                            "column": 23
                          },
                          "end": {
                            "line": 32,
                            "column": 5
                          }
                        }
                      },
                      "alternate": null,
                      "range": [
                        649,
                        739
                      ],
                      "loc": {
                        "start": {
                          "line": 30,
                          "column": 4
                        },
                        "end": {
                          "line": 32,
                          "column": 5
                        }
                      }
                    },
                    {
                      "type": "ReturnStatement",
                      "argument": {
                        "type": "MemberExpression",
                        "computed": true,
                        "object": {
                          "type": "CallExpression",
                          "callee": {
                            "type": "MemberExpression",
                            "computed": false,
                            "object": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  751,
                                  755
                                ],
                                "loc": {
                                  "start": {
                                    "line": 33,
                                    "column": 11
                                  },
                                  "end": {
                                    "line": 33,
                                    "column": 15
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "_items",
                                "range": [
                                  756,
                                  762
                                ],
                                "loc": {
                                  "start": {
                                    "line": 33,
                                    "column": 16
                                  },
                                  "end": {
                                    "line": 33,
                                    "column": 22
                                  }
                                }
                              },
                              "range": [
                                751,
                                762
                              ],
                              "loc": {
                                "start": {
                                  "line": 33,
                                  "column": 11
                                },
                                "end": {
                                  "line": 33,
                                  "column": 22
                                }
                              }
                            },
                            "property": {
                              "type": "Identifier",
                              "name": "splice",
                              "range": [
                                763,
                                769
                              ],
                              "loc": {
                                "start": {
                                  "line": 33,
                                  "column": 23
                                },
                                "end": {
                                  "line": 33,
                                  "column": 29
                                }
                              }
                            },
                            "range": [
                              751,
                              769
                            ],
                            "loc": {
                              "start": {
                                "line": 33,
                                "column": 11
                              },
                              "end": {
                                "line": 33,
                                "column": 29
                              }
                            }
                          },
                          "arguments": [
                            {
                              "type": "BinaryExpression",
                              "operator": "-",
                              "left": {
                                "type": "MemberExpression",
                                "computed": false,
                                "object": {
                                  "type": "MemberExpression",
                                  "computed": false,
                                  "object": {
                                    "type": "ThisExpression",
                                    "range": [
                                      770,
                                      774
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 33,
                                        "column": 30
                                      },
                                      "end": {
                                        "line": 33,
                                        "column": 34
                                      }
                                    }
                                  },
                                  "property": {
                                    "type": "Identifier",
                                    "name": "_items",
                                    "range": [
                                      775,
                                      781
                                    ],
                                    "loc": {
                                      "start": {
                                        "line": 33,
                                        "column": 35
                                      },
                                      "end": {
                                        "line": 33,
                                        "column": 41
                                      }
                                    }
                                  },
                                  "range": [
                                    770,
                                    781
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 33,
                                      "column": 30
                                    },
                                    "end": {
                                      "line": 33,
                                      "column": 41
                                    }
                                  }
                                },
                                "property": {
                                  "type": "Identifier",
                                  "name": "length",
                                  "range": [
                                    782,
                                    788
                                  ],
                                  "loc": {
                                    "start": {
                                      "line": 33,
                                      "column": 42
                                    },
                                    "end": {
                                      "line": 33,
                                      "column": 48
                                    }
                                  }
                                },
                                "range": [
                                  770,
                                  788
                                ],
                                "loc": {
                                  "start": {
                                    "line": 33,
                                    "column": 30
                                  },
                                  "end": {
                                    "line": 33,
                                    "column": 48
                                  }
                                }
                              },
                              "right": {
                                "type": "Literal",
                                "value": 1,
                                "raw": "1",
                                "range": [
                                  789,
                                  790
                                ],
                                "loc": {
                                  "start": {
                                    "line": 33,
                                    "column": 49
                                  },
                                  "end": {
                                    "line": 33,
                                    "column": 50
                                  }
                                }
                              },
                              "range": [
                                770,
                                790
                              ],
                              "loc": {
                                "start": {
                                  "line": 33,
                                  "column": 30
                                },
                                "end": {
                                  "line": 33,
                                  "column": 50
                                }
                              }
                            }
                          ],
                          "range": [
                            751,
                            791
                          ],
                          "loc": {
                            "start": {
                              "line": 33,
                              "column": 11
                            },
                            "end": {
                              "line": 33,
                              "column": 51
                            }
                          }
                        },
                        "property": {
                          "type": "Literal",
                          "value": 0,
                          "raw": "0",
                          "range": [
                            792,
                            793
                          ],
                          "loc": {
                            "start": {
                              "line": 33,
                              "column": 52
                            },
                            "end": {
                              "line": 33,
                              "column": 53
                            }
                          }
                        },
                        "range": [
                          751,
                          794
                        ],
                        "loc": {
                          "start": {
                            "line": 33,
                            "column": 11
                          },
                          "end": {
                            "line": 33,
                            "column": 54
                          }
                        }
                      },
                      "range": [
                        744,
                        795
                      ],
                      "loc": {
                        "start": {
                          "line": 33,
                          "column": 4
                        },
                        "end": {
                          "line": 33,
                          "column": 55
                        }
                      }
                    }
                  ],
                  "range": [
                    643,
                    799
                  ],
                  "loc": {
                    "start": {
                      "line": 29,
                      "column": 7
                    },
                    "end": {
                      "line": 34,
                      "column": 3
                    }
                  }
                },
                "generator": false,
                "expression": false,
                "range": [
                  641,
                  799
                ],
                "loc": {
                  "start": {
                    "line": 29,
                    "column": 5
                  },
                  "end": {
                    "line": 34,
                    "column": 3
                  }
                }
              },
              "kind": "method",
              "computed": false,
              "range": [
                638,
                799
              ],
              "loc": {
                "start": {
                  "line": 29,
                  "column": 2
                },
                "end": {
                  "line": 34,
                  "column": 3
                }
              },
              "leadingComments": [
                {
                  "type": "Block",
                  "value": "*\n   * returns last value pushed onto Stack; modifies Stack items in-place\n   * @throws {StackEmptyError} if stack is empty.\n   * @return {<Item>} last value pushed onto Stack.\n   ",
                  "range": [
                    451,
                    635
                  ],
                  "loc": {
                    "start": {
                      "line": 24,
                      "column": 2
                    },
                    "end": {
                      "line": 28,
                      "column": 5
                    }
                  }
                }
              ],
              "trailingComments": [
                {
                  "type": "Block",
                  "value": "*\n   * Gets number of items currently on the stack.\n   * @return {Number}\n   ",
                  "range": [
                    803,
                    884
                  ],
                  "loc": {
                    "start": {
                      "line": 36,
                      "column": 2
                    },
                    "end": {
                      "line": 39,
                      "column": 5
                    }
                  }
                }
              ],
              "static": false
            },
            {
              "type": "MethodDefinition",
              "key": {
                "type": "Identifier",
                "name": "count",
                "range": [
                  887,
                  892
                ],
                "loc": {
                  "start": {
                    "line": 40,
                    "column": 2
                  },
                  "end": {
                    "line": 40,
                    "column": 7
                  }
                }
              },
              "value": {
                "type": "FunctionExpression",
                "id": null,
                "params": [],
                "body": {
                  "type": "BlockStatement",
                  "body": [
                    {
                      "type": "ReturnStatement",
                      "argument": {
                        "type": "MemberExpression",
                        "computed": false,
                        "object": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "ThisExpression",
                            "range": [
                              907,
                              911
                            ],
                            "loc": {
                              "start": {
                                "line": 41,
                                "column": 11
                              },
                              "end": {
                                "line": 41,
                                "column": 15
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "_items",
                            "range": [
                              912,
                              918
                            ],
                            "loc": {
                              "start": {
                                "line": 41,
                                "column": 16
                              },
                              "end": {
                                "line": 41,
                                "column": 22
                              }
                            }
                          },
                          "range": [
                            907,
                            918
                          ],
                          "loc": {
                            "start": {
                              "line": 41,
                              "column": 11
                            },
                            "end": {
                              "line": 41,
                              "column": 22
                            }
                          }
                        },
                        "property": {
                          "type": "Identifier",
                          "name": "length",
                          "range": [
                            919,
                            925
                          ],
                          "loc": {
                            "start": {
                              "line": 41,
                              "column": 23
                            },
                            "end": {
                              "line": 41,
                              "column": 29
                            }
                          }
                        },
                        "range": [
                          907,
                          925
                        ],
                        "loc": {
                          "start": {
                            "line": 41,
                            "column": 11
                          },
                          "end": {
                            "line": 41,
                            "column": 29
                          }
                        }
                      },
                      "range": [
                        900,
                        926
                      ],
                      "loc": {
                        "start": {
                          "line": 41,
                          "column": 4
                        },
                        "end": {
                          "line": 41,
                          "column": 30
                        }
                      }
                    }
                  ],
                  "range": [
                    894,
                    930
                  ],
                  "loc": {
                    "start": {
                      "line": 40,
                      "column": 9
                    },
                    "end": {
                      "line": 42,
                      "column": 3
                    }
                  }
                },
                "generator": false,
                "expression": false,
                "range": [
                  892,
                  930
                ],
                "loc": {
                  "start": {
                    "line": 40,
                    "column": 7
                  },
                  "end": {
                    "line": 42,
                    "column": 3
                  }
                }
              },
              "kind": "method",
              "computed": false,
              "range": [
                887,
                930
              ],
              "loc": {
                "start": {
                  "line": 40,
                  "column": 2
                },
                "end": {
                  "line": 42,
                  "column": 3
                }
              },
              "leadingComments": [
                {
                  "type": "Block",
                  "value": "*\n   * Gets number of items currently on the stack.\n   * @return {Number}\n   ",
                  "range": [
                    803,
                    884
                  ],
                  "loc": {
                    "start": {
                      "line": 36,
                      "column": 2
                    },
                    "end": {
                      "line": 39,
                      "column": 5
                    }
                  }
                }
              ],
              "trailingComments": [
                {
                  "type": "Block",
                  "value": "*\n   * Clears out all items from the Stack.\n   * @return {void}\n   ",
                  "range": [
                    934,
                    1005
                  ],
                  "loc": {
                    "start": {
                      "line": 44,
                      "column": 2
                    },
                    "end": {
                      "line": 47,
                      "column": 5
                    }
                  }
                }
              ],
              "static": false
            },
            {
              "type": "MethodDefinition",
              "key": {
                "type": "Identifier",
                "name": "clear",
                "range": [
                  1008,
                  1013
                ],
                "loc": {
                  "start": {
                    "line": 48,
                    "column": 2
                  },
                  "end": {
                    "line": 48,
                    "column": 7
                  }
                }
              },
              "value": {
                "type": "FunctionExpression",
                "id": null,
                "params": [],
                "body": {
                  "type": "BlockStatement",
                  "body": [
                    {
                      "type": "ExpressionStatement",
                      "expression": {
                        "type": "AssignmentExpression",
                        "operator": "=",
                        "left": {
                          "type": "MemberExpression",
                          "computed": false,
                          "object": {
                            "type": "MemberExpression",
                            "computed": false,
                            "object": {
                              "type": "ThisExpression",
                              "range": [
                                1021,
                                1025
                              ],
                              "loc": {
                                "start": {
                                  "line": 49,
                                  "column": 4
                                },
                                "end": {
                                  "line": 49,
                                  "column": 8
                                }
                              }
                            },
                            "property": {
                              "type": "Identifier",
                              "name": "_items",
                              "range": [
                                1026,
                                1032
                              ],
                              "loc": {
                                "start": {
                                  "line": 49,
                                  "column": 9
                                },
                                "end": {
                                  "line": 49,
                                  "column": 15
                                }
                              }
                            },
                            "range": [
                              1021,
                              1032
                            ],
                            "loc": {
                              "start": {
                                "line": 49,
                                "column": 4
                              },
                              "end": {
                                "line": 49,
                                "column": 15
                              }
                            }
                          },
                          "property": {
                            "type": "Identifier",
                            "name": "length",
                            "range": [
                              1033,
                              1039
                            ],
                            "loc": {
                              "start": {
                                "line": 49,
                                "column": 16
                              },
                              "end": {
                                "line": 49,
                                "column": 22
                              }
                            }
                          },
                          "range": [
                            1021,
                            1039
                          ],
                          "loc": {
                            "start": {
                              "line": 49,
                              "column": 4
                            },
                            "end": {
                              "line": 49,
                              "column": 22
                            }
                          }
                        },
                        "right": {
                          "type": "Literal",
                          "value": 0,
                          "raw": "0",
                          "range": [
                            1042,
                            1043
                          ],
                          "loc": {
                            "start": {
                              "line": 49,
                              "column": 25
                            },
                            "end": {
                              "line": 49,
                              "column": 26
                            }
                          }
                        },
                        "range": [
                          1021,
                          1043
                        ],
                        "loc": {
                          "start": {
                            "line": 49,
                            "column": 4
                          },
                          "end": {
                            "line": 49,
                            "column": 26
                          }
                        }
                      },
                      "range": [
                        1021,
                        1044
                      ],
                      "loc": {
                        "start": {
                          "line": 49,
                          "column": 4
                        },
                        "end": {
                          "line": 49,
                          "column": 27
                        }
                      }
                    }
                  ],
                  "range": [
                    1015,
                    1048
                  ],
                  "loc": {
                    "start": {
                      "line": 48,
                      "column": 9
                    },
                    "end": {
                      "line": 50,
                      "column": 3
                    }
                  }
                },
                "generator": false,
                "expression": false,
                "range": [
                  1013,
                  1048
                ],
                "loc": {
                  "start": {
                    "line": 48,
                    "column": 7
                  },
                  "end": {
                    "line": 50,
                    "column": 3
                  }
                }
              },
              "kind": "method",
              "computed": false,
              "range": [
                1008,
                1048
              ],
              "loc": {
                "start": {
                  "line": 48,
                  "column": 2
                },
                "end": {
                  "line": 50,
                  "column": 3
                }
              },
              "leadingComments": [
                {
                  "type": "Block",
                  "value": "*\n   * Clears out all items from the Stack.\n   * @return {void}\n   ",
                  "range": [
                    934,
                    1005
                  ],
                  "loc": {
                    "start": {
                      "line": 44,
                      "column": 2
                    },
                    "end": {
                      "line": 47,
                      "column": 5
                    }
                  }
                }
              ],
              "trailingComments": [
                {
                  "type": "Block",
                  "value": "*\n   * Returns boolean value based on contents of stack.\n   * @return {Boolean} true if Stack is empty, otherwise false.\n   ",
                  "range": [
                    1052,
                    1180
                  ],
                  "loc": {
                    "start": {
                      "line": 52,
                      "column": 2
                    },
                    "end": {
                      "line": 55,
                      "column": 5
                    }
                  }
                }
              ],
              "static": false
            },
            {
              "type": "MethodDefinition",
              "key": {
                "type": "Identifier",
                "name": "isEmpty",
                "range": [
                  1183,
                  1190
                ],
                "loc": {
                  "start": {
                    "line": 56,
                    "column": 2
                  },
                  "end": {
                    "line": 56,
                    "column": 9
                  }
                }
              },
              "value": {
                "type": "FunctionExpression",
                "id": null,
                "params": [],
                "body": {
                  "type": "BlockStatement",
                  "body": [
                    {
                      "type": "ReturnStatement",
                      "argument": {
                        "type": "BinaryExpression",
                        "operator": "===",
                        "left": {
                          "type": "CallExpression",
                          "callee": {
                            "type": "MemberExpression",
                            "computed": false,
                            "object": {
                              "type": "ThisExpression",
                              "range": [
                                1205,
                                1209
                              ],
                              "loc": {
                                "start": {
                                  "line": 57,
                                  "column": 11
                                },
                                "end": {
                                  "line": 57,
                                  "column": 15
                                }
                              }
                            },
                            "property": {
                              "type": "Identifier",
                              "name": "count",
                              "range": [
                                1210,
                                1215
                              ],
                              "loc": {
                                "start": {
                                  "line": 57,
                                  "column": 16
                                },
                                "end": {
                                  "line": 57,
                                  "column": 21
                                }
                              }
                            },
                            "range": [
                              1205,
                              1215
                            ],
                            "loc": {
                              "start": {
                                "line": 57,
                                "column": 11
                              },
                              "end": {
                                "line": 57,
                                "column": 21
                              }
                            }
                          },
                          "arguments": [],
                          "range": [
                            1205,
                            1217
                          ],
                          "loc": {
                            "start": {
                              "line": 57,
                              "column": 11
                            },
                            "end": {
                              "line": 57,
                              "column": 23
                            }
                          }
                        },
                        "right": {
                          "type": "Literal",
                          "value": 0,
                          "raw": "0",
                          "range": [
                            1222,
                            1223
                          ],
                          "loc": {
                            "start": {
                              "line": 57,
                              "column": 28
                            },
                            "end": {
                              "line": 57,
                              "column": 29
                            }
                          }
                        },
                        "range": [
                          1205,
                          1223
                        ],
                        "loc": {
                          "start": {
                            "line": 57,
                            "column": 11
                          },
                          "end": {
                            "line": 57,
                            "column": 29
                          }
                        }
                      },
                      "range": [
                        1198,
                        1224
                      ],
                      "loc": {
                        "start": {
                          "line": 57,
                          "column": 4
                        },
                        "end": {
                          "line": 57,
                          "column": 30
                        }
                      }
                    }
                  ],
                  "range": [
                    1192,
                    1228
                  ],
                  "loc": {
                    "start": {
                      "line": 56,
                      "column": 11
                    },
                    "end": {
                      "line": 58,
                      "column": 3
                    }
                  }
                },
                "generator": false,
                "expression": false,
                "range": [
                  1190,
                  1228
                ],
                "loc": {
                  "start": {
                    "line": 56,
                    "column": 9
                  },
                  "end": {
                    "line": 58,
                    "column": 3
                  }
                }
              },
              "kind": "method",
              "computed": false,
              "range": [
                1183,
                1228
              ],
              "loc": {
                "start": {
                  "line": 56,
                  "column": 2
                },
                "end": {
                  "line": 58,
                  "column": 3
                }
              },
              "leadingComments": [
                {
                  "type": "Block",
                  "value": "*\n   * Returns boolean value based on contents of stack.\n   * @return {Boolean} true if Stack is empty, otherwise false.\n   ",
                  "range": [
                    1052,
                    1180
                  ],
                  "loc": {
                    "start": {
                      "line": 52,
                      "column": 2
                    },
                    "end": {
                      "line": 55,
                      "column": 5
                    }
                  }
                }
              ],
              "trailingComments": [
                {
                  "type": "Block",
                  "value": "*\n   * @return {String} string representation of the Stack structure\n   ",
                  "range": [
                    1232,
                    1308
                  ],
                  "loc": {
                    "start": {
                      "line": 60,
                      "column": 2
                    },
                    "end": {
                      "line": 62,
                      "column": 5
                    }
                  }
                }
              ],
              "static": false
            },
            {
              "type": "MethodDefinition",
              "key": {
                "type": "Identifier",
                "name": "print",
                "range": [
                  1311,
                  1316
                ],
                "loc": {
                  "start": {
                    "line": 63,
                    "column": 2
                  },
                  "end": {
                    "line": 63,
                    "column": 7
                  }
                }
              },
              "value": {
                "type": "FunctionExpression",
                "id": null,
                "params": [],
                "body": {
                  "type": "BlockStatement",
                  "body": [
                    {
                      "type": "ReturnStatement",
                      "argument": {
                        "type": "BinaryExpression",
                        "operator": "+",
                        "left": {
                          "type": "Literal",
                          "value": "Stack: ",
                          "raw": "\"Stack: \"",
                          "range": [
                            1331,
                            1340
                          ],
                          "loc": {
                            "start": {
                              "line": 64,
                              "column": 11
                            },
                            "end": {
                              "line": 64,
                              "column": 20
                            }
                          }
                        },
                        "right": {
                          "type": "CallExpression",
                          "callee": {
                            "type": "MemberExpression",
                            "computed": false,
                            "object": {
                              "type": "MemberExpression",
                              "computed": false,
                              "object": {
                                "type": "ThisExpression",
                                "range": [
                                  1343,
                                  1347
                                ],
                                "loc": {
                                  "start": {
                                    "line": 64,
                                    "column": 23
                                  },
                                  "end": {
                                    "line": 64,
                                    "column": 27
                                  }
                                }
                              },
                              "property": {
                                "type": "Identifier",
                                "name": "_items",
                                "range": [
                                  1348,
                                  1354
                                ],
                                "loc": {
                                  "start": {
                                    "line": 64,
                                    "column": 28
                                  },
                                  "end": {
                                    "line": 64,
                                    "column": 34
                                  }
                                }
                              },
                              "range": [
                                1343,
                                1354
                              ],
                              "loc": {
                                "start": {
                                  "line": 64,
                                  "column": 23
                                },
                                "end": {
                                  "line": 64,
                                  "column": 34
                                }
                              }
                            },
                            "property": {
                              "type": "Identifier",
                              "name": "toString",
                              "range": [
                                1355,
                                1363
                              ],
                              "loc": {
                                "start": {
                                  "line": 64,
                                  "column": 35
                                },
                                "end": {
                                  "line": 64,
                                  "column": 43
                                }
                              }
                            },
                            "range": [
                              1343,
                              1363
                            ],
                            "loc": {
                              "start": {
                                "line": 64,
                                "column": 23
                              },
                              "end": {
                                "line": 64,
                                "column": 43
                              }
                            }
                          },
                          "arguments": [],
                          "range": [
                            1343,
                            1365
                          ],
                          "loc": {
                            "start": {
                              "line": 64,
                              "column": 23
                            },
                            "end": {
                              "line": 64,
                              "column": 45
                            }
                          }
                        },
                        "range": [
                          1331,
                          1365
                        ],
                        "loc": {
                          "start": {
                            "line": 64,
                            "column": 11
                          },
                          "end": {
                            "line": 64,
                            "column": 45
                          }
                        }
                      },
                      "range": [
                        1324,
                        1366
                      ],
                      "loc": {
                        "start": {
                          "line": 64,
                          "column": 4
                        },
                        "end": {
                          "line": 64,
                          "column": 46
                        }
                      }
                    }
                  ],
                  "range": [
                    1318,
                    1370
                  ],
                  "loc": {
                    "start": {
                      "line": 63,
                      "column": 9
                    },
                    "end": {
                      "line": 65,
                      "column": 3
                    }
                  }
                },
                "generator": false,
                "expression": false,
                "range": [
                  1316,
                  1370
                ],
                "loc": {
                  "start": {
                    "line": 63,
                    "column": 7
                  },
                  "end": {
                    "line": 65,
                    "column": 3
                  }
                }
              },
              "kind": "method",
              "computed": false,
              "range": [
                1311,
                1370
              ],
              "loc": {
                "start": {
                  "line": 63,
                  "column": 2
                },
                "end": {
                  "line": 65,
                  "column": 3
                }
              },
              "leadingComments": [
                {
                  "type": "Block",
                  "value": "*\n   * @return {String} string representation of the Stack structure\n   ",
                  "range": [
                    1232,
                    1308
                  ],
                  "loc": {
                    "start": {
                      "line": 60,
                      "column": 2
                    },
                    "end": {
                      "line": 62,
                      "column": 5
                    }
                  }
                }
              ],
              "static": false
            }
          ],
          "range": [
            219,
            1372
          ],
          "loc": {
            "start": {
              "line": 10,
              "column": 12
            },
            "end": {
              "line": 66,
              "column": 1
            }
          }
        },
        "range": [
          207,
          1372
        ],
        "loc": {
          "start": {
            "line": 10,
            "column": 0
          },
          "end": {
            "line": 66,
            "column": 1
          }
        },
        "leadingComments": [
          {
            "type": "Block",
            "value": "*\n * Stack: LIFO data structure\n * Usage: let stack = new Stack();\n *        stack.push('A');\n *        stack.push('B');\n *        stack.pop();  => B'\n ",
            "range": [
              50,
              206
            ],
            "loc": {
              "start": {
                "line": 3,
                "column": 0
              },
              "end": {
                "line": 9,
                "column": 3
              }
            }
          }
        ],
        "__esdoc__pseudo_export": false,
        "trailingComments": []
      },
      "range": [
        1374,
        1395
      ],
      "loc": {
        "start": {
          "line": 68,
          "column": 0
        },
        "end": {
          "line": 68,
          "column": 21
        }
      },
      "leadingComments": null
    }
  ],
  "sourceType": "module",
  "range": [
    0,
    1395
  ],
  "loc": {
    "start": {
      "line": 1,
      "column": 0
    },
    "end": {
      "line": 68,
      "column": 21
    }
  },
  "comments": [
    {
      "type": "Block",
      "value": "*\n * Stack: LIFO data structure\n * Usage: let stack = new Stack();\n *        stack.push('A');\n *        stack.push('B');\n *        stack.pop();  => B'\n ",
      "range": [
        50,
        206
      ],
      "loc": {
        "start": {
          "line": 3,
          "column": 0
        },
        "end": {
          "line": 9,
          "column": 3
        }
      }
    },
    {
      "type": "Block",
      "value": "*\n   * Appends an item to the top of the Stack.\n   * @param {item} value to push onto the top of the Stack\n   * @return {void}\n   ",
      "range": [
        267,
        401
      ],
      "loc": {
        "start": {
          "line": 15,
          "column": 2
        },
        "end": {
          "line": 19,
          "column": 5
        }
      }
    },
    {
      "type": "Block",
      "value": "*\n   * returns last value pushed onto Stack; modifies Stack items in-place\n   * @throws {StackEmptyError} if stack is empty.\n   * @return {<Item>} last value pushed onto Stack.\n   ",
      "range": [
        451,
        635
      ],
      "loc": {
        "start": {
          "line": 24,
          "column": 2
        },
        "end": {
          "line": 28,
          "column": 5
        }
      }
    },
    {
      "type": "Block",
      "value": "*\n   * Gets number of items currently on the stack.\n   * @return {Number}\n   ",
      "range": [
        803,
        884
      ],
      "loc": {
        "start": {
          "line": 36,
          "column": 2
        },
        "end": {
          "line": 39,
          "column": 5
        }
      }
    },
    {
      "type": "Block",
      "value": "*\n   * Clears out all items from the Stack.\n   * @return {void}\n   ",
      "range": [
        934,
        1005
      ],
      "loc": {
        "start": {
          "line": 44,
          "column": 2
        },
        "end": {
          "line": 47,
          "column": 5
        }
      }
    },
    {
      "type": "Block",
      "value": "*\n   * Returns boolean value based on contents of stack.\n   * @return {Boolean} true if Stack is empty, otherwise false.\n   ",
      "range": [
        1052,
        1180
      ],
      "loc": {
        "start": {
          "line": 52,
          "column": 2
        },
        "end": {
          "line": 55,
          "column": 5
        }
      }
    },
    {
      "type": "Block",
      "value": "*\n   * @return {String} string representation of the Stack structure\n   ",
      "range": [
        1232,
        1308
      ],
      "loc": {
        "start": {
          "line": 60,
          "column": 2
        },
        "end": {
          "line": 62,
          "column": 5
        }
      }
    }
  ]
}