compiler/PPCInlineCharacterNode.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Mon, 20 Apr 2015 11:23:20 +0100
changeset 432 fde2d5969fbb
parent 422 116d2b2af905
permissions -rw-r--r--
PPCBenchmarkResource updated to work on Smalltalk/X ...as API of FileReference and Filename differ.

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

"{ NameSpace: Smalltalk }"

PPCAbstractCharacterNode subclass:#PPCInlineCharacterNode
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'PetitCompiler-Nodes'
!

!PPCInlineCharacterNode methodsFor:'as yet unclassified'!

printOn: aStream
	aStream nextPutAll: #inlined.
	super printOn: aStream.
!

start: compiler id: id
	compiler startInline: id.
!

stop: compiler
	^ compiler stopInline
! !