ParseErrorNode.st
changeset 2594 8226f4081f74
parent 2549 b4e6af2f403e
child 2853 fab783ff128b
equal deleted inserted replaced
2593:557c0dddfd66 2594:8226f4081f74
    62     self objectAttributeAt: #lineNumber put: anInteger
    62     self objectAttributeAt: #lineNumber put: anInteger
    63 
    63 
    64     "Created: / 09-07-2011 / 22:29:51 / Jan Vrany <jan.vrany@fit.cvut.cz>"
    64     "Created: / 09-07-2011 / 22:29:51 / Jan Vrany <jan.vrany@fit.cvut.cz>"
    65 ! !
    65 ! !
    66 
    66 
    67 
       
    68 !ParseErrorNode methodsFor:'queries'!
    67 !ParseErrorNode methodsFor:'queries'!
    69 
    68 
    70 isErrorNode
    69 isErrorNode
    71     ^ true
    70     ^ true
    72 ! !
    71 ! !
    73 
    72 
       
    73 !ParseErrorNode methodsFor:'visiting'!
       
    74 
       
    75 acceptVisitor:aVisitor 
       
    76     "Double dispatch back to the visitor, passing my type encoded in
       
    77      the selector (visitor pattern)"
       
    78 
       
    79     "stub code automatically generated - please change if required"
       
    80 
       
    81     ^ aVisitor visitParseErrorNode:self
       
    82 ! !
       
    83 
    74 !ParseErrorNode class methodsFor:'documentation'!
    84 !ParseErrorNode class methodsFor:'documentation'!
    75 
    85 
    76 version
    86 version
    77     ^ '$Header: /cvs/stx/stx/libcomp/ParseErrorNode.st,v 1.4 2011-07-09 21:51:24 vrany Exp $'
    87     ^ '$Header: /cvs/stx/stx/libcomp/ParseErrorNode.st,v 1.5 2011-07-25 22:32:44 vrany Exp $'
    78 !
    88 !
    79 
    89 
    80 version_CVS
    90 version_CVS
    81     ^ '$Header: /cvs/stx/stx/libcomp/ParseErrorNode.st,v 1.4 2011-07-09 21:51:24 vrany Exp $'
    91     ^ '$Header: /cvs/stx/stx/libcomp/ParseErrorNode.st,v 1.5 2011-07-25 22:32:44 vrany Exp $'
    82 ! !
    92 ! !