[Pkg] Monticello Public: Monticello.impl-mtf.530.mcz

squeaksource-noreply at iam.unibe.ch squeaksource-noreply at iam.unibe.ch
Wed Jun 11 04:53:31 UTC 2008


A new version of Monticello.impl was added to project Monticello Public:
http://www.squeaksource.com/mc/Monticello.impl-mtf.530.mcz

==================== Summary ====================

Name: Monticello.impl-mtf.530
Author: mtf
Time: 10 June 2008, 9:51:08 pm
UUID: 57d1e44c-34ad-4b7f-801a-62948f738a8f
Ancestors: Monticello.impl-mtf.529

always handle syntax errors thru SyntaxErrorNotification, never directly. Keeping requestor nil ensures that Parser never accidentally goes into interactive mode.

=============== Diff against Monticello.impl-mtf.529 ===============

Item was changed:
  ----- Method: MCMethodDefinition>>initializeWithClassName:classIsMeta:selector:category:timeStamp:source: (in category 'serializing') -----
  initializeWithClassName: classString
  classIsMeta: metaBoolean
  selector: selectorString
  category: catString
  timeStamp: timeString
  source: sourceString
  	className := classString asSymbol.
  	selector := selectorString asSymbol.
  	category :=  (catString ifNil: [ '' ]) asSymbol.
  	timeStamp := timeString.
  	classIsMeta := metaBoolean.
  	source := sourceString withSqueakLineEndings.
+ 	requestor := nil. "Always handle syntax errors thru SyntaxErrorNotification, never directly"
- 	requestor := SyntaxError new category: category
  !



More information about the Packages mailing list