File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2321,16 +2321,16 @@ namespace ts {
23212321 if ( symbol && symbol . valueDeclaration && symbol . valueDeclaration . kind === SyntaxKind . VariableDeclaration ) {
23222322 const declaration = symbol . valueDeclaration as VariableDeclaration ;
23232323 if ( declaration . initializer ) {
2324- return isExportsOrModuleExportsOrAliasOrAssignemnt ( declaration . initializer ) ;
2324+ return isExportsOrModuleExportsOrAliasOrAssignment ( declaration . initializer ) ;
23252325 }
23262326 }
23272327 }
23282328 return false ;
23292329 }
23302330
2331- function isExportsOrModuleExportsOrAliasOrAssignemnt ( node : Node ) : boolean {
2331+ function isExportsOrModuleExportsOrAliasOrAssignment ( node : Node ) : boolean {
23322332 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 ) ) ) ;
23342334 }
23352335
23362336 function bindModuleExportsAssignment ( node : BinaryExpression ) {
You can’t perform that action at this time.
0 commit comments