ContextInspectorView.st
changeset 9426 f4faa9c4aabc
parent 9351 99bd94741d5d
child 9588 dc38e81ec660
equal deleted inserted replaced
9425:ca49e390fe41 9426:f4faa9c4aabc
   256                             realTempNames := (blockNode arguments collect:[:aVar | aVar name]) , realTempNames.
   256                             realTempNames := (blockNode arguments collect:[:aVar | aVar name]) , realTempNames.
   257                         ].
   257                         ].
   258                         "/
   258                         "/
   259                         "/ hidden temps used for loop.
   259                         "/ hidden temps used for loop.
   260                         "/
   260                         "/
   261                         blockNode invokationSelector == #timesRepeat ifTrue:[
   261                         blockNode invocationSelector == #timesRepeat ifTrue:[
   262                             realTempNames asOrderedCollection addFirst:'*loopStop*'
   262                             realTempNames asOrderedCollection addFirst:'*loopStop*'
   263                         ] ifFalse:[
   263                         ] ifFalse:[
   264                             blockNode invokationSelector == #to:do: ifTrue:[
   264                             blockNode invocationSelector == #to:do: ifTrue:[
   265                                 realTempNames asOrderedCollection addFirst:'*loopStop*'
   265                                 realTempNames asOrderedCollection addFirst:'*loopStop*'
   266                             ]
   266                             ]
   267                         ].
   267                         ].
   268                         blockNode := blockNode home.
   268                         blockNode := blockNode home.
   269                     ].
   269                     ].
   305             listView selectElement:oldSelectedName.
   305             listView selectElement:oldSelectedName.
   306             self showSelection:idx.
   306             self showSelection:idx.
   307         ]
   307         ]
   308     ].
   308     ].
   309 
   309 
   310     "Modified: / 03-08-2006 / 14:23:18 / cg"
   310     "Modified: / 27-04-2010 / 11:57:09 / cg"
   311 !
   311 !
   312 
   312 
   313 namesOfBlockContext:aContext
   313 namesOfBlockContext:aContext
   314     |numArgs numVars argAndVarNames argNames varNames tmpNames names|
   314     |numArgs numVars argAndVarNames argNames varNames tmpNames names|
   315 
   315 
   654 ! !
   654 ! !
   655 
   655 
   656 !ContextInspectorView class methodsFor:'documentation'!
   656 !ContextInspectorView class methodsFor:'documentation'!
   657 
   657 
   658 version
   658 version
   659     ^ '$Header: /cvs/stx/stx/libtool/ContextInspectorView.st,v 1.72 2010-02-01 14:58:09 cg Exp $'
   659     ^ '$Header: /cvs/stx/stx/libtool/ContextInspectorView.st,v 1.73 2010-04-27 09:59:24 cg Exp $'
   660 !
   660 !
   661 
   661 
   662 version_CVS
   662 version_CVS
   663     ^ '$Header: /cvs/stx/stx/libtool/ContextInspectorView.st,v 1.72 2010-02-01 14:58:09 cg Exp $'
   663     ^ '$Header: /cvs/stx/stx/libtool/ContextInspectorView.st,v 1.73 2010-04-27 09:59:24 cg Exp $'
   664 ! !
   664 ! !