Skip to content

Commit 919ecbe

Browse files
committed
Fix unused symbols
1 parent 4f4ea56 commit 919ecbe

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
@@ -1583,7 +1583,7 @@ namespace Parser {
15831583
// Note: any errors at the end of the file that do not precede a regular node, should get
15841584
// attached to the EOF token.
15851585
let parseErrorBeforeNextFinishedNode = false;
1586-
1586+
15871587
const tsPlusExternalTypeCache = new Map<string, Record<string, TsPlusTypeDefinition[]>>()
15881588
const tsPlusResolvedPathsCache = new Map<string, string[]>()
15891589
const tsPlusResolvedModuleCache = new Map<string, any>()
@@ -1975,7 +1975,7 @@ namespace Parser {
19751975
(collectTypesIfNotExported || hasModifierOfKind(statement, SyntaxKind.ExportKeyword))
19761976
) {
19771977
if (statement.tsPlusTypeTags && statement.tsPlusTypeTags.length > 0) {
1978-
file.tsPlusContext.type.push(statement);
1978+
file.tsPlusContext.type.push(statement);
19791979
}
19801980
if (statement.tsPlusNoInheritTags && statement.tsPlusNoInheritTags.length > 0) {
19811981
file.tsPlusContext.noInherit.push(statement);

0 commit comments

Comments
 (0)