Hello,<br><br>I've been trying to get the ClosureCompiler installed on my image for a while. I have the nCompiler package installed at version 20, but when I try to install the ClosureCompiler, I get this error in Compiler&gt;&gt;compileDoIt:in:to:notifying:ifFail:log:
<br><br>scope := aContext<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ifNotNil: [aContext doItScope]<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ifNil: [receiver class parseScope instanceScope].<br><br>receive class parseScope turns into a doesNotUnderstand, that's because receiver is nil.
<br><br>The code that leads up to this stems from:<br><br>Compiler&gt;&gt;evaluate: textOrString logged: logFlag <br>&nbsp;&nbsp;&nbsp; ^self evaluate: textOrString for: nil logged: logFlag<br><br>That nil argument to for: ultimately turns into the to: argument (receiver) in the method above.
<br><br>Is there a known fix for this?<br><br>Duncan.<br>