File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -4621,7 +4621,7 @@ module ts {
46214621 // parse namespace or named imports
46224622 if ( ! importClause . defaultBinding ||
46234623 parseOptional ( SyntaxKind . CommaToken ) ) {
4624- importClause . bindings = token === SyntaxKind . AsteriskToken ? parseNamespaceImport ( ) : parseNamedImports ( ) ;
4624+ importClause . namedBindings = token === SyntaxKind . AsteriskToken ? parseNamespaceImport ( ) : parseNamedImports ( ) ;
46254625 }
46264626
46274627 parseExpected ( SyntaxKind . FromKeyword ) ;
Original file line number Diff line number Diff line change @@ -875,7 +875,7 @@ module ts {
875875
876876 export interface ImportClause extends Node {
877877 defaultBinding ?: Identifier ;
878- bindings ?: NamespaceImport | NamedImports ;
878+ namedBindings ?: NamespaceImport | NamedImports ;
879879 }
880880
881881 export interface NamespaceImport extends Declaration {
You can’t perform that action at this time.
0 commit comments