compiler/PPCInlineNilNode.st
changeset 391 553a5456963b
child 392 9b297f0d949c
equal deleted inserted replaced
390:17ba167b8ee1 391:553a5456963b
       
     1 "{ Package: 'stx:goodies/petitparser/compiler' }"
       
     2 
       
     3 PPCNilNode subclass:#PPCInlineNilNode
       
     4 	instanceVariableNames:''
       
     5 	classVariableNames:''
       
     6 	poolDictionaries:''
       
     7 	category:'PetitCompiler-Nodes'
       
     8 !
       
     9 
       
    10 PPCInlineNilNode comment:''
       
    11 !
       
    12 
       
    13 !PPCInlineNilNode methodsFor:'as yet unclassified'!
       
    14 
       
    15 asInlined
       
    16 	^ self
       
    17 !
       
    18 
       
    19 compileWith: compiler effect: effect id: id
       
    20 	compiler startInline: id.
       
    21 	compiler add: 'nil.'.
       
    22  ^ compiler stopInline.
       
    23 ! !
       
    24