The Trunk: Monticello-ar.377.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Monticello-ar.377.mcz

commits-2
Andreas Raab uploaded a new version of Monticello to project The Trunk:
http://source.squeak.org/trunk/Monticello-ar.377.mcz

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

Name: Monticello-ar.377
Author: ar
Time: 4 March 2010, 11:42:39.369 pm
UUID: 5e88cd2d-73f5-d149-b625-d0edf06258fa
Ancestors: Monticello-ar.376

Remove last remaining uses of SyntaxError to indicate non-interactive compile.

=============== Diff against Monticello-ar.376 ===============

Item was changed:
  ----- Method: MCMethodDefinition>>addMethodAdditionTo: (in category 'installing') -----
  addMethodAdditionTo: aCollection
  | methodAddition |
  methodAddition := MethodAddition new
  compile: source
  classified: category
  withStamp: timeStamp
+ notifying: nil
- notifying: (SyntaxError new category: category)
  logSource: true
  inClass: self actualClass.
  "This might raise an exception and never return"
  methodAddition createCompiledMethod.
  aCollection add: methodAddition.
  !

Item was changed:
  ----- Method: MCMethodDefinition>>load (in category 'accessing') -----
  load
  self actualClass
  compile: source
  classified: category
  withStamp: timeStamp
+ notifying: nil!
- notifying: (SyntaxError new category: category)!

Item was changed:
  ----- Method: MCMethodDefinition>>asMethodAddition (in category 'accessing') -----
  asMethodAddition
  ^MethodAddition new
  compile: source
  classified: category
  withStamp: timeStamp
+ notifying: nil
- notifying: (SyntaxError new category: category)
  logSource: true
  inClass: self actualClass.!