biome_js_parser 0.5.7

Biome's JavaScript parser
Documentation
JsModule {
    bom_token: missing (optional),
    interpreter_token: missing (optional),
    directives: JsDirectiveList [],
    items: JsModuleItemList [
        JsClassDeclaration {
            decorators: JsDecoratorList [],
            abstract_token: missing (optional),
            class_token: CLASS_KW@0..6 "class" [] [Whitespace(" ")],
            id: JsIdentifierBinding {
                name_token: IDENT@6..8 "B" [] [Whitespace(" ")],
            },
            type_parameters: missing (optional),
            extends_clause: missing (optional),
            implements_clause: missing (optional),
            l_curly_token: L_CURLY@8..10 "{" [] [Whitespace(" ")],
            members: JsClassMemberList [
                JsBogusMember {
                    items: [
                        TsPropertySignatureModifierList [
                            TsDeclareModifier {
                                modifier_token: DECLARE_KW@10..18 "declare" [] [Whitespace(" ")],
                            },
                        ],
                        JsLiteralMemberName {
                            value: IDENT@18..22 "foo" [] [Whitespace(" ")],
                        },
                    ],
                },
            ],
            r_curly_token: R_CURLY@22..23 "}" [] [],
        },
    ],
    eof_token: EOF@23..24 "" [Newline("\n")] [],
}

0: JS_MODULE@0..24
  0: (empty)
  1: (empty)
  2: JS_DIRECTIVE_LIST@0..0
  3: JS_MODULE_ITEM_LIST@0..23
    0: JS_CLASS_DECLARATION@0..23
      0: JS_DECORATOR_LIST@0..0
      1: (empty)
      2: CLASS_KW@0..6 "class" [] [Whitespace(" ")]
      3: JS_IDENTIFIER_BINDING@6..8
        0: IDENT@6..8 "B" [] [Whitespace(" ")]
      4: (empty)
      5: (empty)
      6: (empty)
      7: L_CURLY@8..10 "{" [] [Whitespace(" ")]
      8: JS_CLASS_MEMBER_LIST@10..22
        0: JS_BOGUS_MEMBER@10..22
          0: TS_PROPERTY_SIGNATURE_MODIFIER_LIST@10..18
            0: TS_DECLARE_MODIFIER@10..18
              0: DECLARE_KW@10..18 "declare" [] [Whitespace(" ")]
          1: JS_LITERAL_MEMBER_NAME@18..22
            0: IDENT@18..22 "foo" [] [Whitespace(" ")]
      9: R_CURLY@22..23 "}" [] []
  4: EOF@23..24 "" [Newline("\n")] []
--
class_declare_member.js:1:11 parse ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

  × 'declare' modifier can only be used in TypeScript files
  
  > 1 │ class B { declare foo }
      │           ^^^^^^^
    2 │ 
  
--
class B { declare foo }