Final CR feedback fixes

This commit is contained in:
Dan Quirk 2015-07-09 18:07:48 -07:00
parent c363dec9af
commit 1a3dbc0a5f
2 changed files with 3 additions and 3 deletions

View file

@ -490,7 +490,7 @@ namespace ts {
if (stat.kind === SyntaxKind.ExportDeclaration || stat.kind === SyntaxKind.ExportAssignment) {
return true;
}
};
}
}
return false;
}

View file

@ -9,9 +9,9 @@ namespace ts {
// Flags enum to track count of temp variables and a few dedicated names
const enum TempFlags {
Auto = 0x00000000, // No preferred name
Auto = 0x00000000, // No preferred name
CountMask = 0x0FFFFFFF, // Temp variable counter
_i = 0x10000000, // Use/preference flag for '_i'
_i = 0x10000000, // Use/preference flag for '_i'
}
// targetSourceFile is when users only want one file in entire project to be emitted. This is used in compileOnSave feature