biome_js_parser 0.5.7

Biome's JavaScript parser
Documentation
JsModule {
    bom_token: missing (optional),
    interpreter_token: missing (optional),
    directives: JsDirectiveList [],
    items: JsModuleItemList [
        JsEmptyStatement {
            semicolon_token: SEMICOLON@0..1 ";" [] [],
        },
    ],
    eof_token: EOF@1..2 "" [Newline("\n")] [],
}

0: JS_MODULE@0..2
  0: (empty)
  1: (empty)
  2: JS_DIRECTIVE_LIST@0..0
  3: JS_MODULE_ITEM_LIST@0..1
    0: JS_EMPTY_STATEMENT@0..1
      0: SEMICOLON@0..1 ";" [] []
  4: EOF@1..2 "" [Newline("\n")] []