Changes regarding parsing of code with errors in Pharo 12

Parsing of code with errors:

In Pharo 11 ends ends up inRBParser>>#parserError: and raises a SyntaxErrorNotification CodeError << #SyntaxErrorNotification slots: {}; package: 'Deprecated12' that can be caught. Resuming from that error raises then ReparseAfterSourceEditing, and that triggers another reparsing.

In Pharo 12 a CodeError is raised instead from RBNotice>>#signalError. Parsing does not directly raise an error. Instead the AST is annotated with notices (RBNotice) and RBProgramNode>>#checkFaulty: throws a code error if any RBErrorNotice are detect in any AST node.

The entry point where coder shows parse errors (SyntaxErrorNotification CodeError << #SyntaxErrorNotification slots: {}; package: 'Deprecated12' /CodeError) and OCUndeclaredVariableWarning Notification << #OCUndeclaredVariableWarning slots: { #notice }; tag: 'Exceptions'; package: 'OpalCompiler-Core' is GtSourceCoder>>#notifyParseError:requesterObject: notifyParseError: aSemanticWarning requesterObject: aRequester self announce: (GtCoderParseError new coder: self; exception: aSemanticWarning; errorMessage: aSemanticWarning messageText; location: aSemanticWarning location; requesterObject: aRequester)

RBParser parseMethod: 'ha
	+1'
  
RBParser parseExpression: '+1'