[Pkg] The Trunk: Kernel-eem.1121.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Nov 14 19:10:21 UTC 2017


Eliot Miranda uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-eem.1121.mcz

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

Name: Kernel-eem.1121
Author: eem
Time: 14 November 2017, 11:10:07.464042 am
UUID: 98880dc0-3ab4-4b8d-90ee-c5aab215e3b4
Ancestors: Kernel-eem.1120

fix comment typo

=============== Diff against Kernel-eem.1120 ===============

Item was changed:
  ----- Method: CompiledCode>>abstractBytecodeMessagesAndPCs (in category 'scanning') -----
  abstractBytecodeMessagesAndPCs
+ 	"Answer the receiver's sequence of abstract bytecodes as a sequence of tuples of bytecode message and pc."
- 	"Answer the receiver's sequence of abstract bytecodes as a sequence of tuples of bytecode mnessage and pc."
  	"(CompiledCode >> #abstractBytecodeMessagesAndPCs) abstractBytecodeMessagesAndPCs"
  	| msgs initial endpc pc scanner |
  	scanner := InstructionStream new method: self pc: (initial := self initialPC).
  	msgs := OrderedCollection new: (endpc  := self endPC) - initial.
  	[(pc := scanner pc) <= endpc] whileTrue:
  		[[scanner interpretNextInstructionFor: nil]
  			on: MessageNotUnderstood
  			do: [:ex| msgs addLast: { ex message. pc }]].
  	^msgs!



More information about the Packages mailing list