PetitCommonMark/software/petitcompiler/PPCompositeParser.extension.st

12 lines
279 B
Smalltalk

Extension { #name : 'PPCompositeParser' }
{ #category : '*petitcompiler' }
PPCompositeParser >> asCompilerNode [
^ PPCForwardNode new
name: (self name ifNil: [ #start ]);
child: parser;
yourself
"Modified: / 22-05-2015 / 21:54:41 / Jan Vrany <jan.vrany@fit.cvut.cz>"
]