Class Parser


back
readMethodVariables
tokenType = $| ifFalse: [ ^ nil ].
self nextLex.
[ self tokenIsName ]
whileTrue: [ self addTempName: token. self nextLex ].
tokenType = $|
ifTrue: [ self nextLex ]
ifFalse: [ self error: 'illegal method variable declaration']