ConstantNode.st
changeset 3246 d0c8d1d6bad7
parent 2895 fe7143fbfdbe
child 3503 53d41ce411e1
equal deleted inserted replaced
3245:73518b3c144a 3246:d0c8d1d6bad7
    11 "
    11 "
    12 "{ Package: 'stx:libcomp' }"
    12 "{ Package: 'stx:libcomp' }"
    13 
    13 
    14 PrimaryNode subclass:#ConstantNode
    14 PrimaryNode subclass:#ConstantNode
    15 	instanceVariableNames:''
    15 	instanceVariableNames:''
    16 	classVariableNames:'TrueNode FalseNode NilNode Const0Node Const1Node Float0Node
    16 	classVariableNames:'TrueNode FalseNode NilNode Const0Node Const1Node Float0Node'
    17 		endLineNr endCharIndex'
       
    18 	poolDictionaries:''
    17 	poolDictionaries:''
    19 	category:'System-Compiler-Support'
    18 	category:'System-Compiler-Support'
    20 !
    19 !
    21 
    20 
    22 !ConstantNode class methodsFor:'documentation'!
    21 !ConstantNode class methodsFor:'documentation'!
   152     ^ #Literal
   151     ^ #Literal
   153 ! !
   152 ! !
   154 
   153 
   155 !ConstantNode methodsFor:'accessing'!
   154 !ConstantNode methodsFor:'accessing'!
   156 
   155 
   157 endCharIndex
       
   158 ^endCharIndex.
       
   159 
       
   160     "Created: / 23-02-2011 / 20:57:13 / Jakub <zelenja7@fel.cvut.cz>"
       
   161 !
       
   162 
       
   163 endCharIndex:val
       
   164 endCharIndex:=val.
       
   165 
       
   166     "Created: / 23-02-2011 / 20:57:23 / Jakub <zelenja7@fel.cvut.cz>"
       
   167 !
       
   168 
       
   169 endLineNr
       
   170 ^endLineNr.
       
   171 
       
   172     "Created: / 23-02-2011 / 20:53:25 / Jakub <zelenja7@fel.cvut.cz>"
       
   173 !
       
   174 
       
   175 endLineNr:val 
       
   176     endLineNr := val.
       
   177 
       
   178     "Created: / 23-02-2011 / 20:53:47 / Jakub <zelenja7@fel.cvut.cz>"
       
   179 !
       
   180 
       
   181 lineNumber:ignoredLineNumber
   156 lineNumber:ignoredLineNumber
   182 
   157 
   183     "Created: / 14.5.1998 / 19:31:48 / cg"
   158     "Created: / 14.5.1998 / 19:31:48 / cg"
   184 ! !
   159 ! !
   185 
   160 
   403 ! !
   378 ! !
   404 
   379 
   405 !ConstantNode class methodsFor:'documentation'!
   380 !ConstantNode class methodsFor:'documentation'!
   406 
   381 
   407 version_CVS
   382 version_CVS
   408     ^ '$Header: /cvs/stx/stx/libcomp/ConstantNode.st,v 1.50 2012-08-03 15:52:49 stefan Exp $'
   383     ^ '$Header: /cvs/stx/stx/libcomp/ConstantNode.st,v 1.51 2013-07-31 15:47:01 cg Exp $'
   409 !
   384 !
   410 
   385 
   411 version_SVN
   386 version_SVN
   412     ^ '§ Id §'
   387     ^ '$ Id $'
   413 ! !
   388 ! !
       
   389