<div id="__MailbirdStyleContent" style="font-size: 10pt;font-family: Arial;color: #000000">
                                        
                                        
                                            
                                        
                                        
                                        Hi Jakob,<div><br></div><div>such a fix should address the comment in the method which states why it was that way. :o)</div><div><br></div><div>You can do-it "ThisContext top inspect" to inspect the object on stack top.</div><div><br></div><div>Best,</div><div>Marcel</div><div class="mb_sig"></div>
                                        
                                        <blockquote class="history_container" type="cite" style="border-left-style: solid;border-width: 1px;margin-top: 20px;margin-left: 0px;padding-left: 10px;min-width: 500px">
                        <p style="color: #AAAAAA; margin-top: 10px;">Am 06.06.2020 18:29:23 schrieb commits@source.squeak.org <commits@source.squeak.org>:</p><div style="font-family:Arial,Helvetica,sans-serif">A new version of Tools was added to project The Inbox:<br>http://source.squeak.org/inbox/Tools-jr.972.mcz<br><br>==================== Summary ====================<br><br>Name: Tools-jr.972<br>Author: jr<br>Time: 6 June 2020, 6:29:12.309632 pm<br>UUID: 2735b7ce-1f1b-a846-9635-f225f1db5be7<br>Ancestors: Tools-mt.970<br><br>Fix: inspecting the stack top only inspected its printString instead.<br><br>=============== Diff against Tools-mt.970 ===============<br><br>Item was changed:<br>  ----- Method: ContextVariablesInspector>>fieldStackTop (in category 'fields') -----<br>  fieldStackTop<br>      "Note that #valueGetter returns the actual printString to not confuse an empty stack top with nil or an empty string. So the value pane will just stay empty if there is no stack top and it will show 'nil' or '''' otherwise."<br>    <br>      ^ (self newFieldForType: #stackTop key: #stackTop)<br>            name: 'stack top' translated; emphasizeName;<br>+                 valueGetter: [:context | context actualStackSize > 0 ifTrue: [context top] ifFalse: ['']];<br>-                valueGetter: [:context | context actualStackSize > 0 ifTrue: [context top printString] ifFalse: ['']];<br>             printValueAsIs;<br>               valueGetterExpression: 'ThisContext top';<br>             yourself!<br><br><br></div></blockquote></div>