ParseErrorNode.st
changeset 4144 40668dc4b737
parent 3269 812d7cd10746
child 4509 132f89212503
--- a/ParseErrorNode.st	Mon May 22 11:36:28 2017 +0200
+++ b/ParseErrorNode.st	Mon May 22 18:38:01 2017 +0200
@@ -11,6 +11,8 @@
 "
 "{ Package: 'stx:libcomp' }"
 
+"{ NameSpace: Smalltalk }"
+
 ParseNode subclass:#ParseErrorNode
 	instanceVariableNames:'errorString errorToken children'
 	classVariableNames:''
@@ -36,7 +38,7 @@
 
 documentation
 "
-    ParseErrorNode represent an errorneous portion of the source code.
+    ParseErrorNode represent an erroneous portion of the source code.
     Error nodes are created by error-tolerant parser. So far the only
     user is SmallSenseParser (https://bitbucket.org/janvrany/jv-smallsense).
 
@@ -45,7 +47,7 @@
     Example:
 
         printValue: value
-            Transcript show: (value printStringRadix: 12 
+            Transcript show: (value printStringRadix: 12
             Transcript cr
 
     The tolerant parser may create tree like:
@@ -178,10 +180,10 @@
 !ParseErrorNode class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/ParseErrorNode.st,v 1.7 2013-08-15 14:20:56 vrany Exp $'
+    ^ '$Header$'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libcomp/ParseErrorNode.st,v 1.7 2013-08-15 14:20:56 vrany Exp $'
+    ^ '$Header$'
 ! !