pharo
pharo copied to clipboard
Comments are breaking the parser
I have the following method
closeMe
"the link url -  - url is allowed to have title in quotes
(url ""title"") "
| split title |
split := url splitOnFirst: Character space.
self reference: (MicResourceReference fromUri: split first).
title := (split second ifNil: [ '' ])
trimBoth: [:char | {$". Character space} includes: char].
self arguments: (MicArgumentList withString: title)
and I cannot comment
title := (split second ifNil: [ '' ])
trimBoth: [:char | {$". Character space} includes: char].
self arguments: (MicArgumentList withString: title)
To me it looks like a parser bug.