File tree Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Original file line number Diff line number Diff line change 33
44/* @internal */
55module ts {
6- // represents one LexicalEnvironment frame to store unique generated names
7- interface ScopeFrame {
8- names : Map < string > ;
9- previous : ScopeFrame ;
10- }
11-
126 export function isExternalModuleOrDeclarationFile ( sourceFile : SourceFile ) {
137 return isExternalModule ( sourceFile ) || isDeclarationFile ( sourceFile ) ;
148 }
@@ -18,7 +12,6 @@ module ts {
1812 Auto = 0x00000000 , // No preferred name
1913 CountMask = 0x0FFFFFFF , // Temp variable counter
2014 _i = 0x10000000 , // Use/preference flag for '_i'
21- _n = 0x20000000 , // Use/preference flag for '_n'
2215 }
2316
2417 // targetSourceFile is when users only want one file in entire project to be emitted. This is used in compileOnSave feature
You can’t perform that action at this time.
0 commit comments