File tree Expand file tree Collapse file tree 1 file changed +19
-19
lines changed
Expand file tree Collapse file tree 1 file changed +19
-19
lines changed Original file line number Diff line number Diff line change @@ -142,13 +142,13 @@ export interface ClassInstanceCreationExpression extends BaseNode {
142142export interface Literal extends BaseNode {
143143 kind : "Literal" ;
144144 literalType :
145- | IntegerLiteral
146- | FloatingPointLiteral
147- | BooleanLiteral
148- | CharacterLiteral
149- | TextBlockLiteral
150- | StringLiteral
151- | NullLiteral ;
145+ | IntegerLiteral
146+ | FloatingPointLiteral
147+ | BooleanLiteral
148+ | CharacterLiteral
149+ | TextBlockLiteral
150+ | StringLiteral
151+ | NullLiteral ;
152152}
153153
154154export type IntegerLiteral =
@@ -243,18 +243,18 @@ export interface Assignment extends BaseNode {
243243 kind : "Assignment" ;
244244 left : LeftHandSide ;
245245 operator :
246- | "="
247- | "+="
248- | "-="
249- | "*="
250- | "/="
251- | "%="
252- | "|="
253- | "&="
254- | "^="
255- | "<<="
256- | ">>="
257- | ">>>=" ;
246+ | "="
247+ | "+="
248+ | "-="
249+ | "*="
250+ | "/="
251+ | "%="
252+ | "|="
253+ | "&="
254+ | "^="
255+ | "<<="
256+ | ">>="
257+ | ">>>=" ;
258258 right : Expression ;
259259}
260260
You can’t perform that action at this time.
0 commit comments