The Trunk: 51Deprecated-topa.2.mcz

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

The Trunk: 51Deprecated-topa.2.mcz

commits-2
Tobias Pape uploaded a new version of 51Deprecated to project The Trunk:
http://source.squeak.org/trunk/51Deprecated-topa.2.mcz

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

Name: 51Deprecated-topa.2
Author: topa
Time: 8 October 2015, 8:24:57.392 pm
UUID: 39a6dda9-4053-4241-81d8-0b49f0791385
Ancestors: 51Deprecated-topa.1

Deprecate #nextPutKeyword:withArg: as alternate syntax is unsupported since at least 4.0

=============== Diff against 51Deprecated-topa.1 ===============

Item was added:
+ ----- Method: WriteStream>>nextPutKeyword:withArg: (in category '*51Deprecated-character writing') -----
+ nextPutKeyword: keyword withArg: argValue
+ "Emit a keyword/value pair in the alternate syntax"
+
+ self nextPutAll: (keyword copyWithout: $:);
+ nextPut: $(;
+ store: argValue;
+ nextPut: $)!