Skip to content

Commit 6177d2a

Browse files
committed
Fix unused symbols
1 parent 2672d8c commit 6177d2a

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>()
@@ -1976,7 +1976,7 @@ namespace Parser {
19761976
(collectTypesIfNotExported || hasModifierOfKind(statement, SyntaxKind.ExportKeyword))
19771977
) {
19781978
if (statement.tsPlusTypeTags && statement.tsPlusTypeTags.length > 0) {
1979-
file.tsPlusContext.type.push(statement);
1979+
file.tsPlusContext.type.push(statement);
19801980
}
19811981
if (statement.tsPlusNoInheritTags && statement.tsPlusNoInheritTags.length > 0) {
19821982
file.tsPlusContext.noInherit.push(statement);

0 commit comments

Comments
 (0)