Skip to content

Commit 249a948

Browse files
committed
Fix unused symbols
1 parent 3c2ab5d commit 249a948

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/compiler/parser.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1582,7 +1582,7 @@ namespace Parser {
15821582
// Note: any errors at the end of the file that do not precede a regular node, should get
15831583
// attached to the EOF token.
15841584
let parseErrorBeforeNextFinishedNode = false;
1585-
1585+
15861586
const tsPlusExternalTypeCache = new Map<string, Record<string, TsPlusTypeDefinition[]>>()
15871587
const tsPlusResolvedPathsCache = new Map<string, string[]>()
15881588
const tsPlusResolvedModuleCache = new Map<string, any>()
@@ -2009,7 +2009,7 @@ namespace Parser {
20092009
(collectTypesIfNotExported || hasModifierOfKind(statement, SyntaxKind.ExportKeyword))
20102010
) {
20112011
if (statement.tsPlusTypeTags && statement.tsPlusTypeTags.length > 0) {
2012-
file.tsPlusContext.type.push(statement);
2012+
file.tsPlusContext.type.push(statement);
20132013
}
20142014
if (statement.tsPlusNoInheritTags && statement.tsPlusNoInheritTags.length > 0) {
20152015
file.tsPlusContext.noInherit.push(statement);

0 commit comments

Comments
 (0)