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 [
JsConstructorClassMember {
modifiers: JsConstructorModifierList [],
name: JsLiteralMemberName {
value: IDENT@10..21 "constructor" [] [],
},
parameters: JsConstructorParameters {
l_paren_token: L_PAREN@21..22 "(" [] [],
parameters: JsConstructorParameterList [
JsBogusParameter {
items: [
JsDecoratorList [],
TsPropertyParameterModifierList [
TsAccessibilityModifier {
modifier_token: PROTECTED_KW@22..32 "protected" [] [Whitespace(" ")],
},
],
JsFormalParameter {
decorators: JsDecoratorList [],
binding: JsIdentifierBinding {
name_token: IDENT@32..33 "b" [] [],
},
question_mark_token: missing (optional),
type_annotation: missing (optional),
initializer: missing (optional),
},
],
},
],
r_paren_token: R_PAREN@33..35 ")" [] [Whitespace(" ")],
},
body: JsFunctionBody {
l_curly_token: L_CURLY@35..36 "{" [] [],
directives: JsDirectiveList [],
statements: JsStatementList [],
r_curly_token: R_CURLY@36..38 "}" [] [Whitespace(" ")],
},
},
],
r_curly_token: R_CURLY@38..39 "}" [] [],
},
],
eof_token: EOF@39..40 "" [Newline("\n")] [],
}
0: JS_MODULE@0..40
0: (empty)
1: (empty)
2: JS_DIRECTIVE_LIST@0..0
3: JS_MODULE_ITEM_LIST@0..39
0: JS_CLASS_DECLARATION@0..39
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..38
0: JS_CONSTRUCTOR_CLASS_MEMBER@10..38
0: JS_CONSTRUCTOR_MODIFIER_LIST@10..10
1: JS_LITERAL_MEMBER_NAME@10..21
0: IDENT@10..21 "constructor" [] []
2: JS_CONSTRUCTOR_PARAMETERS@21..35
0: L_PAREN@21..22 "(" [] []
1: JS_CONSTRUCTOR_PARAMETER_LIST@22..33
0: JS_BOGUS_PARAMETER@22..33
0: JS_DECORATOR_LIST@22..22
1: TS_PROPERTY_PARAMETER_MODIFIER_LIST@22..32
0: TS_ACCESSIBILITY_MODIFIER@22..32
0: PROTECTED_KW@22..32 "protected" [] [Whitespace(" ")]
2: JS_FORMAL_PARAMETER@32..33
0: JS_DECORATOR_LIST@32..32
1: JS_IDENTIFIER_BINDING@32..33
0: IDENT@32..33 "b" [] []
2: (empty)
3: (empty)
4: (empty)
2: R_PAREN@33..35 ")" [] [Whitespace(" ")]
3: JS_FUNCTION_BODY@35..38
0: L_CURLY@35..36 "{" [] []
1: JS_DIRECTIVE_LIST@36..36
2: JS_STATEMENT_LIST@36..36
3: R_CURLY@36..38 "}" [] [Whitespace(" ")]
9: R_CURLY@38..39 "}" [] []
4: EOF@39..40 "" [Newline("\n")] []
--
class_constructor_parameter.js:1:23 parse ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
× 'protected' modifier can only be used in TypeScript files
> 1 │ class B { constructor(protected b) {} }
│ ^^^^^^^^^
2 │
--
class B { constructor(protected b) {} }