I didn't check (I'm not on my laptop) but I would say the problem is that�CompiledMethodWithNode does not exist any more. Something like that would fix it:
GRPharoPlatform>>compile: aString into: aClass classified: aSymbol
� � "The trick here is to be as silently a possible so that the package is not marked dirty when running WAFileLibrary test.
� � This also makes running tests much faster."
� � | methodNode compiledMethod selector methodAndNode |
� ��methodNode�:= aClass compilerClass new
� � � ��source: aString;
� � � � class: aClass;
� � � � failBlock: [ GRError signal: 'syntax error' ];
� � � � translate.
� ��compiledMethod :=�methodNode generate:�aClass defaultMethodTrailer.
� � selector :=�methodNode�selector.
� � compiledMethod
� � � � putSource: aString
� � � � fromParseNode:�methodNode
� � � � inFile: 2
� � � � withPreamble: [ :file |
� � � � � � aClass
� � � � � � � � printCategoryChunk: aSymbol asString
� � � � � � � � on: file priorMethod: (aClass compiledMethodAt: selector ifAbsent: [ nil ]).
� � � � � � file cr ].
� � aClass
� � � � addSelectorSilently: selector
� � � � withMethod: compiledMethod.
� � self doSilently: �[
� � � � aClass organization
� � � � � � classify: selector
� � � � � � under: aSymbol ]