Skip to content

Commit 1294387

Browse files
committed
Fix unused symbols
1 parent 1deb713 commit 1294387

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
@@ -1572,7 +1572,7 @@ namespace Parser {
15721572
// Note: any errors at the end of the file that do not precede a regular node, should get
15731573
// attached to the EOF token.
15741574
let parseErrorBeforeNextFinishedNode = false;
1575-
1575+
15761576
const tsPlusExternalTypeCache = new Map<string, Record<string, TsPlusTypeDefinition[]>>()
15771577
const tsPlusResolvedPathsCache = new Map<string, string[]>()
15781578
const tsPlusResolvedModuleCache = new Map<string, any>()
@@ -2001,7 +2001,7 @@ namespace Parser {
20012001
(collectTypesIfNotExported || hasModifierOfKind(statement, SyntaxKind.ExportKeyword))
20022002
) {
20032003
if (statement.tsPlusTypeTags && statement.tsPlusTypeTags.length > 0) {
2004-
file.tsPlusContext.type.push(statement);
2004+
file.tsPlusContext.type.push(statement);
20052005
}
20062006
if (statement.tsPlusNoInheritTags && statement.tsPlusNoInheritTags.length > 0) {
20072007
file.tsPlusContext.noInherit.push(statement);

0 commit comments

Comments
 (0)