Skip to content

Commit 5cc7dce

Browse files
committed
chore: make sure bootstrapping works
1 parent 4b2a399 commit 5cc7dce

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/parser.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -579,7 +579,7 @@ export class Parser extends DiagnosticEmitter {
579579
}
580580

581581
// '[' Type (',' Type)* ']'
582-
} else if (this.options && this.options.hasFeature(Feature.MultiValue) && token == Token.OpenBracket) {
582+
} else if (this.options && this.options!.hasFeature(Feature.MultiValue) && token == Token.OpenBracket) {
583583
let elements: TypeNode[] = [];
584584
let elementNames: (IdentifierExpression | null)[] = [];
585585
let hasElementNames = false;

0 commit comments

Comments
 (0)