class: Parser
authorClaus Gittinger <cg@exept.de>
Sat, 22 Feb 2014 16:56:35 +0100
changeset 3379 c49aae2b8648
parent 3378 4f6e4135ab25
child 3380 d4d09495435a
class: Parser changed: #variableOrError: (send #workspaceVariableHolderAt: instead of #workspaceVariableAt:)
Parser.st
--- a/Parser.st	Thu Feb 20 16:18:57 2014 +0100
+++ b/Parser.st	Sat Feb 22 16:56:35 2014 +0100
@@ -8537,7 +8537,7 @@
         "/ We only care for WorkspaceVars in doIts
         (self isDoIt) ifTrue:[
             (Workspace notNil
-            and:[(holder := Workspace workspaceVariableAt:varName) notNil])
+            and:[(holder := Workspace workspaceVariableHolderAt:varName) notNil])
             ifTrue:[
                 ^ (VariableNode type:#WorkspaceVariable holder:holder name:varName)
                     startPosition: tokenPosition endPosition: tokenPosition + varName size - 1
@@ -11784,11 +11784,11 @@
 !Parser class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/Parser.st,v 1.802 2014-02-18 17:07:04 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/Parser.st,v 1.803 2014-02-22 15:56:35 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libcomp/Parser.st,v 1.802 2014-02-18 17:07:04 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/Parser.st,v 1.803 2014-02-22 15:56:35 cg Exp $'
 !
 
 version_SVN