PetitCommonMark/software/petitcompiler/PPPluggableParser.extension.st

16 lines
298 B
Smalltalk

Extension { #name : 'PPPluggableParser' }
{ #category : '*petitcompiler' }
PPPluggableParser >> asCompilerNode [
^ PPCPluggableNode new
block: block;
name: self name;
properties: properties;
yourself
]
{ #category : '*petitcompiler' }
PPPluggableParser >> isContextFreePrim [
^ false
]