The Trunk: Kernel-ul.1271.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-ul.1271.mcz

commits-2
Levente Uzonyi uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-ul.1271.mcz

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

Name: Kernel-ul.1271
Author: ul
Time: 2 October 2019, 3:32:00.996571 pm
UUID: 8f26ad4e-1b27-4fe5-ba97-9bc7ef4d0129
Ancestors: Kernel-ul.1270, Kernel-nice.1270

- merged

=============== Diff against Kernel-nice.1270 ===============

Item was changed:
+ ----- Method: Context>>methodClass (in category 'accessing') -----
- ----- Method: Context>>methodClass (in category 'debugger access') -----
  methodClass
  "Answer the class in which the receiver's method was found."
 
  ^self method methodClass ifNil: [self objectClass: self receiver].!

Item was removed:
- ----- Method: Context>>namedTempAt: (in category 'debugger access') -----
- namedTempAt: index
- "Answer the value of the temp at index in the receiver's sequence of tempNames."
- ^self debuggerMap namedTempAt: index in: self!

Item was removed:
- ----- Method: Context>>namedTempAt:put: (in category 'debugger access') -----
- namedTempAt: index put: aValue
- "Set the value of the temp at index in the receiver's sequence of tempNames.
- (Note that if the value is a copied value it is also set out along the lexical chain,
-  but alas not in along the lexical chain.)."
- ^self debuggerMap namedTempAt: index put: aValue in: self!

Item was changed:
+ ----- Method: Context>>pc (in category 'accessing') -----
- ----- Method: Context>>pc (in category 'debugger access') -----
  pc
  "Answer the index of the next bytecode to be executed."
 
  ^pc!

Item was removed:
- ----- Method: Context>>print:on: (in category 'debugger access') -----
- print: anObject on: aStream
- "Safely print anObject in the face of direct ProtoObject subclasses."
- | objClass title |
- objClass := self objectClass: anObject.
- (objClass canUnderstand: #printOn:) ifTrue:
- [^anObject printOn: aStream].
- title := objClass name.
- aStream
- nextPutAll: (title first isVowel ifTrue: ['an '] ifFalse: ['a ']);
- nextPutAll: title!

Item was changed:
+ ----- Method: Context>>selector (in category 'accessing') -----
- ----- Method: Context>>selector (in category 'debugger access') -----
  selector
  "Answer the selector of the method that created the receiver."
 
  ^self method selector ifNil: [self method defaultSelector].!

Item was changed:
+ ----- Method: Context>>sender (in category 'accessing') -----
- ----- Method: Context>>sender (in category 'debugger access') -----
  sender
  "Answer the context that sent the message that created the receiver."
 
  ^sender!

Item was changed:
+ ----- Method: Context>>sourceCode (in category 'accessing') -----
- ----- Method: Context>>sourceCode (in category 'debugger access') -----
  sourceCode
  ^self method getSource.
 
  "Note: The above is a bit safer than
  ^ methodClass sourceCodeAt: selector
  which may fail if the receiver's method has been changed in
  the debugger (e.g., the method is no longer in the methodDict
  and thus the above selector is something like #Doit:with:with:with:)
  but the source code is still available."!

Item was removed:
- ----- Method: Context>>tempNames (in category 'debugger access') -----
- tempNames
- "Answer a SequenceableCollection of the names of the receiver's temporary
- variables, which are strings."
-
- ^ self debuggerMap tempNamesForContext: self!

Item was removed:
- ----- Method: Context>>tempsAndValues (in category 'debugger access') -----
- tempsAndValues
- "Return a string of the temporary variables and their current values"
- ^self debuggerMap tempsAndValuesForContext: self!

Item was removed:
- ----- Method: Context>>tempsAndValuesLimitedTo:indent: (in category 'debugger access') -----
- tempsAndValuesLimitedTo: sizeLimit indent: indent
- "Return a string of the temporary variabls and their current values"
-
- | aStream |
- aStream := WriteStream on: (String new: 100).
- self tempNames
- doWithIndex: [:title :index |
- indent timesRepeat: [aStream tab].
- aStream nextPutAll: title; nextPut: $:; space; tab.
- aStream nextPutAll:
- ((self tempAt: index) printStringLimitedTo: (sizeLimit -3 -title size max: 1)).
- aStream cr].
- ^aStream contents!

Item was removed:
- ----- Method: InstructionStream>>abstractPC (in category 'debugger access') -----
- abstractPC
- ^self method abstractPCForConcretePC: pc!

Item was removed:
- ----- Method: InstructionStream>>debuggerMap (in category 'debugger access') -----
- debuggerMap
- ^self method debuggerMap!