UndefinedVariableNotification.st
changeset 3091 e39d4c248fa8
child 3841 a22f33410bdf
child 4097 6066489e5789
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/UndefinedVariableNotification.st	Wed Apr 03 23:17:14 2013 +0200
@@ -0,0 +1,42 @@
+"{ Package: 'stx:libcomp' }"
+
+Notification subclass:#UndefinedVariableNotification
+	instanceVariableNames:'parser'
+	classVariableNames:''
+	poolDictionaries:''
+	category:'System-Compiler'
+!
+
+
+!UndefinedVariableNotification methodsFor:'accessing'!
+
+description
+    ^ 'undefined variable: ' , self variableName
+!
+
+parser
+    "return the value of the instance variable 'parser' (automatically generated)"
+
+    ^ parser
+!
+
+parser:something
+    "set the value of the instance variable 'parser' (automatically generated)"
+
+    parser := something.
+!
+
+variableName
+    ^ parameter
+! !
+
+!UndefinedVariableNotification class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/libcomp/UndefinedVariableNotification.st,v 1.1 2013-04-03 21:17:14 cg Exp $'
+!
+
+version_CVS
+    ^ '$Header: /cvs/stx/stx/libcomp/UndefinedVariableNotification.st,v 1.1 2013-04-03 21:17:14 cg Exp $'
+! !
+