13 lines
258 B
Smalltalk
13 lines
258 B
Smalltalk
|
Extension { #name : 'PPStartOfLineParser' }
|
||
|
|
||
|
{ #category : '*petitcompiler' }
|
||
|
PPStartOfLineParser >> changesContext [
|
||
|
^ false
|
||
|
]
|
||
|
|
||
|
{ #category : '*petitcompiler' }
|
||
|
PPStartOfLineParser >> firstCharSet [
|
||
|
"anything..."
|
||
|
^ PPCharSetPredicate on: [:e | true ]
|
||
|
]
|