Nicolai,can you try with the RBParser directly? I believe Opal uses the RBParser.RBParser parseMethod: 'createRedMorph������ ^ (self new color:Color red); yourself'Oh, RBParser sees it as:self newcolor: Color red;yourself:)Thierry2015-09-16 10:56 GMT+02:00 Nicolai Hess <nicolaihess@web.de>:Who is right ?removing the parenthesis of course works for both.The following method compiles with Opal:but gives a syntax error with the old compilers parser
createRedMorph
������ ^ (self new color:Color red); yourself
createRedMorph
������ ^ (self new color:Color red)End of block expected -> ; yourself(for those who understand the ParseTreeSearcher syntax, how woulda search expression look, for finding code like:���� "(some expression);yourself"nicolai