ParseErrorNode.st
changeset 2547 55ec27b3306c
parent 1570 8ce7594e9b55
child 2549 b4e6af2f403e
equal deleted inserted replaced
2546:5ae96e911e36 2547:55ec27b3306c
     7  inclusion of the above copyright notice.   This software may not
     7  inclusion of the above copyright notice.   This software may not
     8  be provided or otherwise made available to, or used by, any
     8  be provided or otherwise made available to, or used by, any
     9  other person.  No title to or ownership of the software is
     9  other person.  No title to or ownership of the software is
    10  hereby transferred.
    10  hereby transferred.
    11 "
    11 "
    12 
       
    13 "{ Package: 'stx:libcomp' }"
    12 "{ Package: 'stx:libcomp' }"
    14 
    13 
    15 Object subclass:#ParseErrorNode
    14 ParseNode subclass:#ParseErrorNode
    16 	instanceVariableNames:'errorString'
    15 	instanceVariableNames:'errorString'
    17 	classVariableNames:''
    16 	classVariableNames:''
    18 	poolDictionaries:''
    17 	poolDictionaries:''
    19 	category:'System-Compiler-Support'
    18 	category:'System-Compiler-Support'
    20 !
    19 !
    39 
    38 
    40 errorString:arg
    39 errorString:arg
    41     ^ self new errorString:arg
    40     ^ self new errorString:arg
    42 ! !
    41 ! !
    43 
    42 
       
    43 
    44 !ParseErrorNode methodsFor:'accessing'!
    44 !ParseErrorNode methodsFor:'accessing'!
    45 
    45 
    46 errorString
    46 errorString
    47     ^ errorString
    47     ^ errorString
    48 !
    48 !
    49 
    49 
    50 errorString:something
    50 errorString:something
    51     errorString := something.
    51     errorString := something.
    52 ! !
    52 ! !
    53 
    53 
       
    54 
    54 !ParseErrorNode methodsFor:'queries'!
    55 !ParseErrorNode methodsFor:'queries'!
    55 
    56 
    56 isErrorNode
    57 isErrorNode
    57     ^ true
    58     ^ true
    58 ! !
    59 ! !
    59 
    60 
    60 !ParseErrorNode class methodsFor:'documentation'!
    61 !ParseErrorNode class methodsFor:'documentation'!
    61 
    62 
    62 version
    63 version
    63     ^ '$Header: /cvs/stx/stx/libcomp/ParseErrorNode.st,v 1.2 2005-02-02 11:01:55 cg Exp $'
    64     ^ '$Header: /cvs/stx/stx/libcomp/ParseErrorNode.st,v 1.3 2011-07-09 20:09:55 vrany Exp $'
    64 ! !
    65 ! !