File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2321,16 +2321,16 @@ namespace ts {
2321
2321
if ( symbol && symbol . valueDeclaration && symbol . valueDeclaration . kind === SyntaxKind . VariableDeclaration ) {
2322
2322
const declaration = symbol . valueDeclaration as VariableDeclaration ;
2323
2323
if ( declaration . initializer ) {
2324
- return isExportsOrModuleExportsOrAliasOrAssignemnt ( declaration . initializer ) ;
2324
+ return isExportsOrModuleExportsOrAliasOrAssignment ( declaration . initializer ) ;
2325
2325
}
2326
2326
}
2327
2327
}
2328
2328
return false ;
2329
2329
}
2330
2330
2331
- function isExportsOrModuleExportsOrAliasOrAssignemnt ( node : Node ) : boolean {
2331
+ function isExportsOrModuleExportsOrAliasOrAssignment ( node : Node ) : boolean {
2332
2332
return isExportsOrModuleExportsOrAlias ( node ) ||
2333
- ( isAssignmentExpression ( node , /*excludeCompoundAssignements*/ true ) && ( isExportsOrModuleExportsOrAliasOrAssignemnt ( node . left ) || isExportsOrModuleExportsOrAliasOrAssignemnt ( node . right ) ) ) ;
2333
+ ( isAssignmentExpression ( node , /*excludeCompoundAssignements*/ true ) && ( isExportsOrModuleExportsOrAliasOrAssignment ( node . left ) || isExportsOrModuleExportsOrAliasOrAssignment ( node . right ) ) ) ;
2334
2334
}
2335
2335
2336
2336
function bindModuleExportsAssignment ( node : BinaryExpression ) {
You can’t perform that action at this time.
0 commit comments