compiler/PPCInlineNotCharSetPredicateNode.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Tue, 21 Apr 2015 17:20:11 +0100
changeset 437 54b3bc9e3987
parent 422 116d2b2af905
permissions -rw-r--r--
A super ugly hack to fix line endings in Java comments. All three - CR, CR-LF and LF - should be supported.

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

"{ NameSpace: Smalltalk }"

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.
! !