File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments