File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -673,7 +673,7 @@ var esl;
673673 * @param {string } id 模块id
674674 */
675675 function modUpdatePreparedState ( id ) {
676- var moduleUpdatingState = { } ;
676+ var moduleUpdatingStates = { } ;
677677 update ( id ) ;
678678
679679 function update ( id ) {
@@ -683,14 +683,14 @@ var esl;
683683 return false ;
684684 }
685685
686- switch ( moduleUpdatingState [ id ] ) {
686+ switch ( moduleUpdatingStates [ id ] ) {
687687 case 1 :
688688 return true ;
689689 case 2 :
690690 return modIs ( id , MODULE_PREPARED ) ;
691691 }
692692
693- moduleUpdatingState [ id ] = 1 ;
693+ moduleUpdatingStates [ id ] = 1 ;
694694 var mod = modModules [ id ] ;
695695 var prepared = true ;
696696
@@ -717,7 +717,7 @@ var esl;
717717 modSetState ( id , MODULE_PREPARED ) ;
718718 }
719719
720- moduleUpdatingState [ id ] = 2 ;
720+ moduleUpdatingStates [ id ] = 2 ;
721721 return prepared ;
722722 }
723723 }
You can’t perform that action at this time.
0 commit comments