compiler/PPCInlineTokenStarSeparatorNode.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Mon, 20 Apr 2015 13:24:27 +0100
changeset 433 6fcdf4d2c32c
parent 422 116d2b2af905
permissions -rw-r--r--
Skip Java benchmarks on Smalltalk/X ...as Java parser is not yet supported.

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

"{ NameSpace: Smalltalk }"

PPCTokenStarSeparatorNode subclass:#PPCInlineTokenStarSeparatorNode
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'PetitCompiler-Nodes'
!

!PPCInlineTokenStarSeparatorNode methodsFor:'as yet unclassified'!

asInlined
	^ self
!

compileWith: compiler effect: effect id: id
	compiler startInline: id.
	compiler add: 'context skipSeparators.'.
 ^ compiler stopInline.
! !