Compiler related PlusTools and ToolBuilder Questions

stéphane ducasse ducasse at iam.unibe.ch
Sat Nov 5 16:08:20 UTC 2005


>
> I put back
>
> Parser>>interactive
>
>     ^ (requestor == nil or: [requestor isKindOf: SyntaxError]) not
>
>
> Compiler>>interactive
>
>     ^ (requestor == nil or: [requestor isKindOf: SyntaxError]) not

The changes that changes these two methods are one the last cs that  
we pushed
in the stream directly so this would be really easy to rollback.
The error handling of the old compiler is really brittle.

Compiler>>interactive
     "Answer whether there is a requestor of the compiler who should be
     informed that an error occurred."

     ^requestor ~~ nil

Parser>>interactive
     "Answer whether there is a requestor of the compiler who should be
     informed that an error occurred."

     ^requestor ~~ nil



Stef



More information about the Squeak-dev mailing list