Skip to content

Commit aa54514

Browse files
committed
Fix unused symbols
1 parent 3247307 commit aa54514

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/compiler/parser.ts

+2-2
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>()
@@ -1979,7 +1979,7 @@ namespace Parser {
19791979
(collectTypesIfNotExported || hasModifierOfKind(statement, SyntaxKind.ExportKeyword))
19801980
) {
19811981
if (statement.tsPlusTypeTags && statement.tsPlusTypeTags.length > 0) {
1982-
file.tsPlusContext.type.push(statement);
1982+
file.tsPlusContext.type.push(statement);
19831983
}
19841984
if (statement.tsPlusNoInheritTags && statement.tsPlusNoInheritTags.length > 0) {
19851985
file.tsPlusContext.noInherit.push(statement);

0 commit comments

Comments
 (0)