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..14 "Getters" [] [Whitespace(" ")], }, type_parameters: missing (optional), extends_clause: missing (optional), implements_clause: missing (optional), l_curly_token: L_CURLY@14..15 "{" [] [], members: JsClassMemberList [ JsGetterClassMember { modifiers: JsMethodModifierList [], get_token: GET_KW@15..22 "get" [Newline("\n"), Whitespace(" ")] [Whitespace(" ")], name: JsLiteralMemberName { value: IDENT@22..25 "foo" [] [], }, l_paren_token: L_PAREN@25..26 "(" [] [], r_paren_token: R_PAREN@26..27 ")" [] [], return_type: missing (optional), body: missing (required), }, ], r_curly_token: R_CURLY@27..29 "}" [Newline("\n")] [], }, ], eof_token: EOF@29..30 "" [Newline("\n")] [], } 0: JS_MODULE@0..30 0: (empty) 1: (empty) 2: JS_DIRECTIVE_LIST@0..0 3: JS_MODULE_ITEM_LIST@0..29 0: JS_CLASS_DECLARATION@0..29 0: JS_DECORATOR_LIST@0..0 1: (empty) 2: CLASS_KW@0..6 "class" [] [Whitespace(" ")] 3: JS_IDENTIFIER_BINDING@6..14 0: IDENT@6..14 "Getters" [] [Whitespace(" ")] 4: (empty) 5: (empty) 6: (empty) 7: L_CURLY@14..15 "{" [] [] 8: JS_CLASS_MEMBER_LIST@15..27 0: JS_GETTER_CLASS_MEMBER@15..27 0: JS_METHOD_MODIFIER_LIST@15..15 1: GET_KW@15..22 "get" [Newline("\n"), Whitespace(" ")] [Whitespace(" ")] 2: JS_LITERAL_MEMBER_NAME@22..25 0: IDENT@22..25 "foo" [] [] 3: L_PAREN@25..26 "(" [] [] 4: R_PAREN@26..27 ")" [] [] 5: (empty) 6: (empty) 9: R_CURLY@27..29 "}" [Newline("\n")] [] 4: EOF@29..30 "" [Newline("\n")] [] -- getter_class_no_body.js:3:1 parse ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ × Expected a class method body but instead found '}'. 1 │ class Getters { 2 │ get foo() > 3 │ } │ ^ 4 │ i Expected a class method body here. 1 │ class Getters { 2 │ get foo() > 3 │ } │ ^ 4 │ -- class Getters { get foo() }