Skip to content

Commit 2483719

Browse files
committed
Fix lint issues
1 parent 7fd602e commit 2483719

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/compiler/checker.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21947,7 +21947,7 @@ namespace ts {
2194721947
}
2194821948

2194921949
function checkCollisionWithCapturedNewTargetVariable(node: Node, name: Identifier): void {
21950-
if (languageVersion <= ScriptTarget.ES5 &&!compilerOptions.noEmit && needCollisionCheckForIdentifier(node, name, "_newTarget")) {
21950+
if (languageVersion <= ScriptTarget.ES5 && !compilerOptions.noEmit && needCollisionCheckForIdentifier(node, name, "_newTarget")) {
2195121951
potentialNewTargetCollisions.push(node);
2195221952
}
2195321953
}
@@ -21984,7 +21984,7 @@ namespace ts {
2198421984
}
2198521985

2198621986
function checkCollisionWithCapturedSuperVariable(node: Node, name: Identifier) {
21987-
if (languageVersion >= ScriptTarget.ES2015 || compilerOptions.noEmit) {
21987+
if (languageVersion >= ScriptTarget.ES2015 || compilerOptions.noEmit) {
2198821988
return;
2198921989
}
2199021990

0 commit comments

Comments
 (0)