compiler/PPCInlineNotCharSetPredicateNode.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Fri, 07 Nov 2014 02:14:26 +0000
changeset 417 3c0a91182e65
parent 392 9b297f0d949c
child 422 116d2b2af905
permissions -rw-r--r--
Smalltalk grammar updated to allow for Smalltalk/X EOL comments

"{ Package: 'stx:goodies/petitparser/compiler' }"

PPCNotCharSetPredicateNode subclass:#PPCInlineNotCharSetPredicateNode
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'PetitCompiler-Nodes'
!

!PPCInlineNotCharSetPredicateNode methodsFor:'as yet unclassified'!

asInlined
	^ self
!

compileWith: compiler effect: effect id: id
	compiler startInline: id.
	compiler add: ''.
	self bodyOfPredicate: compiler.
 ^ compiler stopInline.
! !