File tree 4 files changed +6
-1
lines changed
swc_ecma_codegen/tests/fixture/typescript/class_implements
4 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ bitflags! {
143
143
| Self :: SpaceBetweenSiblings . bits( )
144
144
| Self :: SpaceBetweenBraces . bits( ) ;
145
145
const MultiLineFunctionBodyStatements = Self :: MultiLine . bits( ) ;
146
- const ClassHeritageClauses = Self :: SingleLine . bits( ) | Self :: SpaceBetweenSiblings . bits( ) ;
146
+ const ClassHeritageClauses = Self :: CommaDelimited . bits ( ) | Self :: SingleLine . bits( ) | Self :: SpaceBetweenSiblings . bits( ) ;
147
147
const ClassMembers = Self :: Indented . bits( ) | Self :: MultiLine . bits( ) ;
148
148
const InterfaceMembers = Self :: Indented . bits( ) | Self :: MultiLine . bits( ) ;
149
149
const EnumMembers = Self :: CommaDelimited . bits( ) | Self :: Indented . bits( ) | Self :: MultiLine . bits( ) ;
Original file line number Diff line number Diff line change
1
+ class MyClass implements Interface1 , Interface2 {
2
+ }
Original file line number Diff line number Diff line change
1
+ class MyClass implements Interface1 , Interface2 {
2
+ }
Original file line number Diff line number Diff line change
1
+ class MyClass implements Interface1 , Interface2 { }
You can’t perform that action at this time.
0 commit comments