11 lines
193 B
Smalltalk
11 lines
193 B
Smalltalk
|
Extension { #name : 'PPEndOfInputParser' }
|
||
|
|
||
|
{ #category : '*petitcompiler' }
|
||
|
PPEndOfInputParser >> asCompilerNode [
|
||
|
|
||
|
^ PPCEndOfInputNode new
|
||
|
name: self name;
|
||
|
child: parser;
|
||
|
yourself
|
||
|
]
|