PrimaryNd.st
changeset 612 2748896a66c8
parent 263 3b21d0991eff
child 711 25b9a501b97d
equal deleted inserted replaced
611:8a0dfadd41f5 612:2748896a66c8
     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 'From Smalltalk/X, Version:3.1.10 on 20-sep-1997 at 11:48:45 pm'                !
    12 
    14 
    13 ParseNode subclass:#PrimaryNode
    15 ParseNode subclass:#PrimaryNode
    14 	instanceVariableNames:'value'
    16 	instanceVariableNames:'value'
    15 	classVariableNames:''
    17 	classVariableNames:''
    16 	poolDictionaries:''
    18 	poolDictionaries:''
    75 ! !
    77 ! !
    76 
    78 
    77 !PrimaryNode methodsFor:'printing'!
    79 !PrimaryNode methodsFor:'printing'!
    78 
    80 
    79 displayString
    81 displayString
       
    82     "return a string for display in inspectors etc."
       
    83 
    80     ^ self subclassResponsibility
    84     ^ self subclassResponsibility
       
    85 
       
    86     "Modified: 20.9.1997 / 11:41:19 / cg"
    81 !
    87 !
    82 
    88 
    83 printOn:aStream indent:i
    89 printOn:aStream indent:i
    84     ^ self subclassResponsibility
    90     ^ self subclassResponsibility
    85 ! !
    91 ! !
    93 ! !
    99 ! !
    94 
   100 
    95 !PrimaryNode class methodsFor:'documentation'!
   101 !PrimaryNode class methodsFor:'documentation'!
    96 
   102 
    97 version
   103 version
    98     ^ '$Header: /cvs/stx/stx/libcomp/Attic/PrimaryNd.st,v 1.16 1996-04-25 17:08:19 cg Exp $'
   104     ^ '$Header: /cvs/stx/stx/libcomp/Attic/PrimaryNd.st,v 1.17 1997-09-20 21:03:31 cg Exp $'
    99 ! !
   105 ! !