Re: [Pharo-users] Help me make sense of this (AST manipulation)

2016-05-03 Thread Marcus Denker
> On 03 May 2016, at 13:58, Victor RENE wrote: > > | f g h | > f := '[ :a | ^a + 1 ].'. " Message pattern expected " > g := '| b |'. " '|' expected " > h := '| b ||'. " Success?!? " > OpalCompiler compile: f. > OpalCompiler compile: g. > OpalCompiler compile: h. > #compile: expects a complete

[Pharo-users] Help me make sense of this (AST manipulation)

2016-05-03 Thread Victor RENE
| f g h | f := '[ :a | ^a + 1 ].'. " Message pattern expected " g := '| b |'. " '|' expected " h := '| b ||'. " Success?!? " OpalCompiler compile: f. OpalCompiler compile: g. OpalCompiler compile: h. Basically I went from writing a function to clean up StringMorphs on the World... cleanupString