@@ -75,43 +75,43 @@ module ts {
7575
7676 var checker : TypeChecker = {
7777 getProgram : ( ) => program ,
78- getDiagnostics : getDiagnostics ,
79- getGlobalDiagnostics : getGlobalDiagnostics ,
8078 getNodeCount : ( ) => sum ( program . getSourceFiles ( ) , "nodeCount" ) ,
8179 getIdentifierCount : ( ) => sum ( program . getSourceFiles ( ) , "identifierCount" ) ,
8280 getSymbolCount : ( ) => sum ( program . getSourceFiles ( ) , "symbolCount" ) ,
8381 getTypeCount : ( ) => typeCount ,
84- checkProgram : checkProgram ,
85- emitFiles : invokeEmitter ,
86- getParentOfSymbol : getParentOfSymbol ,
87- getNarrowedTypeOfSymbol : getNarrowedTypeOfSymbol ,
88- getDeclaredTypeOfSymbol : getDeclaredTypeOfSymbol ,
89- getPropertiesOfType : getPropertiesOfType ,
90- getPropertyOfType : getPropertyOfType ,
91- getSignaturesOfType : getSignaturesOfType ,
92- getIndexTypeOfType : getIndexTypeOfType ,
93- getReturnTypeOfSignature : getReturnTypeOfSignature ,
94- getSymbolsInScope : getSymbolsInScope ,
95- getSymbolInfo : getSymbolInfo ,
96- getShorthandAssignmentValueSymbol : getShorthandAssignmentValueSymbol ,
97- getTypeOfNode : getTypeOfNode ,
98- typeToString : typeToString ,
99- getSymbolDisplayBuilder : getSymbolDisplayBuilder ,
100- symbolToString : symbolToString ,
101- getAugmentedPropertiesOfType : getAugmentedPropertiesOfType ,
102- getRootSymbols : getRootSymbols ,
103- getContextualType : getContextualType ,
104- getFullyQualifiedName : getFullyQualifiedName ,
105- getResolvedSignature : getResolvedSignature ,
106- getEnumMemberValue : getEnumMemberValue ,
107- isValidPropertyAccess : isValidPropertyAccess ,
108- getSignatureFromDeclaration : getSignatureFromDeclaration ,
109- isImplementationOfOverload : isImplementationOfOverload ,
110- getAliasedSymbol : resolveImport ,
11182 isUndefinedSymbol : symbol => symbol === undefinedSymbol ,
11283 isArgumentsSymbol : symbol => symbol === argumentsSymbol ,
113- hasEarlyErrors : hasEarlyErrors ,
114- isEmitBlocked : isEmitBlocked
84+ getDiagnostics,
85+ getGlobalDiagnostics,
86+ checkProgram,
87+ invokeEmitter,
88+ getParentOfSymbol,
89+ getNarrowedTypeOfSymbol,
90+ getDeclaredTypeOfSymbol,
91+ getPropertiesOfType,
92+ getPropertyOfType,
93+ getSignaturesOfType,
94+ getIndexTypeOfType,
95+ getReturnTypeOfSignature,
96+ getSymbolsInScope,
97+ getSymbolInfo,
98+ getShorthandAssignmentValueSymbol,
99+ getTypeOfNode,
100+ typeToString,
101+ getSymbolDisplayBuilder,
102+ symbolToString,
103+ getAugmentedPropertiesOfType,
104+ getRootSymbols,
105+ getContextualType,
106+ getFullyQualifiedName,
107+ getResolvedSignature,
108+ getEnumMemberValue,
109+ isValidPropertyAccess,
110+ getSignatureFromDeclaration,
111+ isImplementationOfOverload,
112+ getAliasedSymbol : resolveImport ,
113+ hasEarlyErrors,
114+ isEmitBlocked,
115115 } ;
116116
117117 var undefinedSymbol = createSymbol ( SymbolFlags . Property | SymbolFlags . Transient , "undefined" ) ;
@@ -953,7 +953,7 @@ module ts {
953953 if ( forEach ( symbol . declarations , declaration => ! getIsDeclarationVisible ( declaration ) ) ) {
954954 return undefined ;
955955 }
956- return { aliasesToMakeVisible : aliasesToMakeVisible } ;
956+ return { aliasesToMakeVisible } ;
957957
958958 function getIsDeclarationVisible ( declaration : Declaration ) {
959959 if ( ! isDeclarationVisible ( declaration ) ) {
@@ -9118,22 +9118,22 @@ module ts {
91189118 function invokeEmitter ( targetSourceFile ?: SourceFile ) {
91199119 var resolver : EmitResolver = {
91209120 getProgram : ( ) => program ,
9121- getLocalNameOfContainer : getLocalNameOfContainer ,
9122- getExpressionNamePrefix : getExpressionNamePrefix ,
9123- getExportAssignmentName : getExportAssignmentName ,
9124- isReferencedImportDeclaration : isReferencedImportDeclaration ,
9125- getNodeCheckFlags : getNodeCheckFlags ,
9126- getEnumMemberValue : getEnumMemberValue ,
9127- isTopLevelValueImportWithEntityName : isTopLevelValueImportWithEntityName ,
9128- hasSemanticErrors : hasSemanticErrors ,
9129- isEmitBlocked : isEmitBlocked ,
9130- isDeclarationVisible : isDeclarationVisible ,
9131- isImplementationOfOverload : isImplementationOfOverload ,
9132- writeTypeAtLocation : writeTypeAtLocation ,
9133- writeReturnTypeOfSignatureDeclaration : writeReturnTypeOfSignatureDeclaration ,
9134- isSymbolAccessible : isSymbolAccessible ,
9135- isImportDeclarationEntityNameReferenceDeclarationVisibile : isImportDeclarationEntityNameReferenceDeclarationVisibile ,
9136- getConstantValue : getConstantValue ,
9121+ getLocalNameOfContainer,
9122+ getExpressionNamePrefix,
9123+ getExportAssignmentName,
9124+ isReferencedImportDeclaration,
9125+ getNodeCheckFlags,
9126+ getEnumMemberValue,
9127+ isTopLevelValueImportWithEntityName,
9128+ hasSemanticErrors,
9129+ isEmitBlocked,
9130+ isDeclarationVisible,
9131+ isImplementationOfOverload,
9132+ writeTypeAtLocation,
9133+ writeReturnTypeOfSignatureDeclaration,
9134+ isSymbolAccessible,
9135+ isImportDeclarationEntityNameReferenceDeclarationVisibile,
9136+ getConstantValue,
91379137 } ;
91389138 checkProgram ( ) ;
91399139 return emitFiles ( resolver , targetSourceFile ) ;
0 commit comments