File tree 1 file changed +3
-3
lines changed 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -7253,7 +7253,7 @@ module ts {
7253
7253
}
7254
7254
}
7255
7255
7256
- function isImportedNameFromEternalModule (n: Node): boolean {
7256
+ function isImportedNameFromExternalModule (n: Node): boolean {
7257
7257
switch (n.kind) {
7258
7258
case SyntaxKind.ElementAccessExpression:
7259
7259
case SyntaxKind.PropertyAccessExpression: {
@@ -7264,7 +7264,7 @@ module ts {
7264
7264
return symbol && symbol.flags & SymbolFlags.Alias && isExternalModuleSymbol(resolveAlias(symbol));
7265
7265
}
7266
7266
case SyntaxKind.ParenthesizedExpression:
7267
- return isImportedNameFromEternalModule ((<ParenthesizedExpression>n).expression);
7267
+ return isImportedNameFromExternalModule ((<ParenthesizedExpression>n).expression);
7268
7268
default:
7269
7269
return false;
7270
7270
}
@@ -7280,7 +7280,7 @@ module ts {
7280
7280
return false;
7281
7281
}
7282
7282
7283
- if (isImportedNameFromEternalModule (n)) {
7283
+ if (isImportedNameFromExternalModule (n)) {
7284
7284
error(n, invalidReferenceMessage);
7285
7285
}
7286
7286
You can’t perform that action at this time.
0 commit comments