amber/st/Compiler-Exceptions.st in resin-0.3.1 vs amber/st/Compiler-Exceptions.st in resin-0.4.0
- old
+ new
@@ -75,9 +75,13 @@
I get signaled when a variable is not defined.
The default behavior is to allow it, as this is how Amber currently is able to seamlessly send messages to JavaScript objects.!
!UnknownVariableError methodsFor: 'accessing'!
+messageText
+ ^ 'Unknown Variable error: ', self variableName, ' is not defined'
+!
+
variableName
^ variableName
!
variableName: aString