extensions.st
changeset 59 e7d0453109a1
child 73 82e202dec6cb
equal deleted inserted replaced
58:df46b9c82b38 59:e7d0453109a1
       
     1 "{ Package: 'jv:vdb' }"!
       
     2 
       
     3 !GDBVariableObject methodsFor:'inspecting'!
       
     4 
       
     5 inspector2TabVariable
       
     6     <inspector2Tab>
       
     7 
       
     8     | varObjApp |
       
     9 
       
    10     varObjApp := Smalltalk at: #VDBVariableObjectListApplication ifAbsent:[ ^ nil ].
       
    11     ^ (self newInspector2Tab)
       
    12         label:'Variable';
       
    13         priority:95;
       
    14         "/ view: [ ... ];
       
    15         application: [ varObjApp new debugger: debugger; variableObjectList: (Array with: self); yourself ];
       
    16         "/ text: [ ... ];
       
    17         yourself
       
    18 
       
    19     "Modified: / 03-02-2018 / 09:58:42 / Jan Vrany <jan.vrany@fit.cvut.cz>"
       
    20 ! !
       
    21 
       
    22 !jv_vdb class methodsFor:'documentation'!
       
    23 
       
    24 extensionsVersion_HG
       
    25 
       
    26     ^ '$Changeset: <not expanded> $'
       
    27 ! !