The Trunk: Kernel-nice.809.mcz

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

The Trunk: Kernel-nice.809.mcz

commits-2
Nicolas Cellier uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-nice.809.mcz

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

Name: Kernel-nice.809
Author: nice
Time: 20 September 2013, 10:27:59.843 pm
UUID: 2c225644-9320-4e31-8191-5cbcf06c184c
Ancestors: Kernel-nice.808

Deprecate compile:notifying:trailer:ifFail:.
The passed classification was unused in this operation.

=============== Diff against Kernel-nice.808 ===============

Item was removed:
- ----- Method: Behavior>>compile:classified:notifying:trailer:ifFail: (in category 'compiling') -----
- compile: code classified: category notifying: requestor trailer: bytes ifFail: failBlock
- "Compile code without logging the source in the changes file"
-
- | methodNode |
- methodNode  := self newCompiler
- compile: code
- in: self
- classified: category
- notifying: requestor
- ifFail: failBlock.
- ^ CompiledMethodWithNode generateMethodFromNode: methodNode trailer: bytes.!