Tobias Pape uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-topa.905.mcz==================== Summary ====================
Name: Kernel-topa.905
Author: topa
Time: 26 February 2015, 11:46:08.016 am
UUID: ab4128de-7440-4a90-94c2-171a33b906c6
Ancestors: Kernel-ul.904
Add a convenience method to access arguments of a context.
Also: increases compatibility.
=============== Diff against Kernel-ul.904 ===============
Item was added:
+ ----- Method: ContextPart>>arguments (in category 'accessing') -----
+ arguments
+
+ ^ Array new: self numArgs streamContents: [:args |
+ 1 to: self numArgs do: [: i |
+ args nextPut: (self tempAt: i)]]!