ContextInspectorView.st
author Claus Gittinger <cg@exept.de>
Thu, 10 Feb 2011 16:58:13 +0100
changeset 9756 5a1787bbf85e
parent 9588 dc38e81ec660
child 10437 27f70bcbf968
permissions -rw-r--r--
added: #classMenuGenerateSingletonPatternInstanceCreationMethods
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
34
d904237f7c44 Initial revision
claus
parents:
diff changeset
     1
"
d904237f7c44 Initial revision
claus
parents:
diff changeset
     2
 COPYRIGHT (c) 1993 by Claus Gittinger
45
950b84ba89e6 *** empty log message ***
claus
parents: 37
diff changeset
     3
	      All Rights Reserved
34
d904237f7c44 Initial revision
claus
parents:
diff changeset
     4
d904237f7c44 Initial revision
claus
parents:
diff changeset
     5
 This software is furnished under a license and may be used
d904237f7c44 Initial revision
claus
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
d904237f7c44 Initial revision
claus
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
d904237f7c44 Initial revision
claus
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
d904237f7c44 Initial revision
claus
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
d904237f7c44 Initial revision
claus
parents:
diff changeset
    10
 hereby transferred.
d904237f7c44 Initial revision
claus
parents:
diff changeset
    11
"
2717
dc997032a34e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2271
diff changeset
    12
"{ Package: 'stx:libtool' }"
dc997032a34e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2271
diff changeset
    13
34
d904237f7c44 Initial revision
claus
parents:
diff changeset
    14
InspectorView subclass:#ContextInspectorView
1395
1c7f8d3794f7 context vars
Claus Gittinger <cg@exept.de>
parents: 1377
diff changeset
    15
	instanceVariableNames:'inspectedContext names showingTemporaries argsOnly contextSize'
296
b480a51cfb5f dont buffer values / keep context / update value (now try single stepping with a variable selected)
Claus Gittinger <cg@exept.de>
parents: 200
diff changeset
    16
	classVariableNames:''
b480a51cfb5f dont buffer values / keep context / update value (now try single stepping with a variable selected)
Claus Gittinger <cg@exept.de>
parents: 200
diff changeset
    17
	poolDictionaries:''
b480a51cfb5f dont buffer values / keep context / update value (now try single stepping with a variable selected)
Claus Gittinger <cg@exept.de>
parents: 200
diff changeset
    18
	category:'Interface-Inspector'
34
d904237f7c44 Initial revision
claus
parents:
diff changeset
    19
!
d904237f7c44 Initial revision
claus
parents:
diff changeset
    20
785
16809b8d468c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
    21
!ContextInspectorView class methodsFor:'documentation'!
34
d904237f7c44 Initial revision
claus
parents:
diff changeset
    22
d904237f7c44 Initial revision
claus
parents:
diff changeset
    23
copyright
d904237f7c44 Initial revision
claus
parents:
diff changeset
    24
"
d904237f7c44 Initial revision
claus
parents:
diff changeset
    25
 COPYRIGHT (c) 1993 by Claus Gittinger
45
950b84ba89e6 *** empty log message ***
claus
parents: 37
diff changeset
    26
	      All Rights Reserved
34
d904237f7c44 Initial revision
claus
parents:
diff changeset
    27
d904237f7c44 Initial revision
claus
parents:
diff changeset
    28
 This software is furnished under a license and may be used
d904237f7c44 Initial revision
claus
parents:
diff changeset
    29
 only in accordance with the terms of that license and with the
d904237f7c44 Initial revision
claus
parents:
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
d904237f7c44 Initial revision
claus
parents:
diff changeset
    31
 be provided or otherwise made available to, or used by, any
d904237f7c44 Initial revision
claus
parents:
diff changeset
    32
 other person.  No title to or ownership of the software is
d904237f7c44 Initial revision
claus
parents:
diff changeset
    33
 hereby transferred.
d904237f7c44 Initial revision
claus
parents:
diff changeset
    34
"
d904237f7c44 Initial revision
claus
parents:
diff changeset
    35
!
d904237f7c44 Initial revision
claus
parents:
diff changeset
    36
d904237f7c44 Initial revision
claus
parents:
diff changeset
    37
documentation
d904237f7c44 Initial revision
claus
parents:
diff changeset
    38
"
471
114883d63124 commentary
Claus Gittinger <cg@exept.de>
parents: 302
diff changeset
    39
    a modified Inspector for Contexts (used in the Debugger)
114883d63124 commentary
Claus Gittinger <cg@exept.de>
parents: 302
diff changeset
    40
    TODO:
114883d63124 commentary
Claus Gittinger <cg@exept.de>
parents: 302
diff changeset
    41
        when expressions are evaluated in myself, the inst-var
114883d63124 commentary
Claus Gittinger <cg@exept.de>
parents: 302
diff changeset
    42
        names are not known by the expression evaluator.
114883d63124 commentary
Claus Gittinger <cg@exept.de>
parents: 302
diff changeset
    43
        This has to be fixed 
114883d63124 commentary
Claus Gittinger <cg@exept.de>
parents: 302
diff changeset
    44
        (actual work is to be done in the Parser to allow passing of a context ...)
510
6543e55fb227 documentation
Claus Gittinger <cg@exept.de>
parents: 471
diff changeset
    45
6543e55fb227 documentation
Claus Gittinger <cg@exept.de>
parents: 471
diff changeset
    46
    [author:]
6543e55fb227 documentation
Claus Gittinger <cg@exept.de>
parents: 471
diff changeset
    47
        Claus Gittinger
6543e55fb227 documentation
Claus Gittinger <cg@exept.de>
parents: 471
diff changeset
    48
6543e55fb227 documentation
Claus Gittinger <cg@exept.de>
parents: 471
diff changeset
    49
    [see also:]
6543e55fb227 documentation
Claus Gittinger <cg@exept.de>
parents: 471
diff changeset
    50
        Context DebugView
34
d904237f7c44 Initial revision
claus
parents:
diff changeset
    51
"
d904237f7c44 Initial revision
claus
parents:
diff changeset
    52
! !
d904237f7c44 Initial revision
claus
parents:
diff changeset
    53
d904237f7c44 Initial revision
claus
parents:
diff changeset
    54
!ContextInspectorView methodsFor:'accessing'!
d904237f7c44 Initial revision
claus
parents:
diff changeset
    55
868
b5f5f5723793 renamed vars for WIN32
Claus Gittinger <cg@exept.de>
parents: 840
diff changeset
    56
inspect:aContext
34
d904237f7c44 Initial revision
claus
parents:
diff changeset
    57
    "set the context to be inspected"
d904237f7c44 Initial revision
claus
parents:
diff changeset
    58
5339
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
    59
    |methodHomeContext method homeNames rec sel 
5803
b43e404776f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5341
diff changeset
    60
     m argsOnly blockNode 
947
b9625d9b0881 better block-var name detection
Claus Gittinger <cg@exept.de>
parents: 868
diff changeset
    61
     numVarsInSource numVarsInContext isDoIt
5803
b43e404776f1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5341
diff changeset
    62
     numArgs numVars n tempNames realTempNames 
6852
39c9b68020eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6491
diff changeset
    63
     oldSelection oldSelectedName hCon listSelection|
34
d904237f7c44 Initial revision
claus
parents:
diff changeset
    64
2236
257f587ad7dc migrate instvars 'inspectedObject' to 'object'
Claus Gittinger <cg@exept.de>
parents: 1769
diff changeset
    65
    oldSelection := selectionIndex.
1769
6b904f69858f try to reselect the same name-entry, if inspected context
Claus Gittinger <cg@exept.de>
parents: 1664
diff changeset
    66
    oldSelection notNil ifTrue:[oldSelectedName := listView at:oldSelection].
49
6fe62433cfa3 *** empty log message ***
claus
parents: 45
diff changeset
    67
8516
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
    68
    ((aContext == inspectedContext)
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
    69
        "/ care for contexts which change size
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
    70
        "/ (after the locals & stack-setup)
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
    71
    and:[    contextSize == inspectedContext size ])
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
    72
    ifTrue:[
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
    73
        "/ do nothing
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
    74
    ] ifFalse:[
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
    75
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
    76
        hasMore := argsOnly := false.
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
    77
        inspectedObject := object := nil.
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
    78
        inspectedContext := aContext.
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
    79
        contextSize := inspectedContext size.
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
    80
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
    81
        aContext isNil ifTrue:[
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
    82
            names := nil.
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
    83
            listView list:nil. 
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
    84
            ^ self
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
    85
        ].
34
d904237f7c44 Initial revision
claus
parents:
diff changeset
    86
56
d0cb937cbcaa *** empty log message ***
claus
parents: 55
diff changeset
    87
"/    realized ifFalse:[^ self].
d0cb937cbcaa *** empty log message ***
claus
parents: 55
diff changeset
    88
5339
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
    89
    methodHomeContext := aContext methodHome.
51
57c1ccc3d7e0 *** empty log message ***
claus
parents: 49
diff changeset
    90
8516
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
    91
        methodHomeContext isNil ifTrue:[
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
    92
            "its a cheap blocks context"
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
    93
            rec := aContext receiver.
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
    94
            sel := aContext selector.
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
    95
            homeNames := OrderedCollection new.
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
    96
            isDoIt := false.
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
    97
        ] ifFalse:[
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
    98
            rec := methodHomeContext receiver.
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
    99
            sel := methodHomeContext selector.
34
d904237f7c44 Initial revision
claus
parents:
diff changeset
   100
8516
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   101
            "/ #doIt needs special handling below
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   102
            isDoIt := (sel == #doIt) or:[sel == #doIt:].
947
b9625d9b0881 better block-var name detection
Claus Gittinger <cg@exept.de>
parents: 868
diff changeset
   103
8516
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   104
            method := methodHomeContext method.
947
b9625d9b0881 better block-var name detection
Claus Gittinger <cg@exept.de>
parents: 868
diff changeset
   105
5339
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   106
"/        implementorClass := methodHomeContext methodClass.
947
b9625d9b0881 better block-var name detection
Claus Gittinger <cg@exept.de>
parents: 868
diff changeset
   107
"/        implementorClass notNil ifTrue:[
b9625d9b0881 better block-var name detection
Claus Gittinger <cg@exept.de>
parents: 868
diff changeset
   108
"/            method := implementorClass compiledMethodAt:sel.
b9625d9b0881 better block-var name detection
Claus Gittinger <cg@exept.de>
parents: 868
diff changeset
   109
"/        ] ifFalse:[
b9625d9b0881 better block-var name detection
Claus Gittinger <cg@exept.de>
parents: 868
diff changeset
   110
"/            "/ mhm - an unbound method;
b9625d9b0881 better block-var name detection
Claus Gittinger <cg@exept.de>
parents: 868
diff changeset
   111
"/            "/ see if it was invoked by a direct call
b9625d9b0881 better block-var name detection
Claus Gittinger <cg@exept.de>
parents: 868
diff changeset
   112
"/            "/ consider this a kludge
b9625d9b0881 better block-var name detection
Claus Gittinger <cg@exept.de>
parents: 868
diff changeset
   113
"/
5339
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   114
"/            methodHomeContext sender notNil ifTrue:[
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   115
"/                (methodHomeContext sender selector startsWith:'valueWithReceiver:') ifTrue:[
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   116
"/                    method := methodHomeContext sender receiver
947
b9625d9b0881 better block-var name detection
Claus Gittinger <cg@exept.de>
parents: 868
diff changeset
   117
"/                ]
b9625d9b0881 better block-var name detection
Claus Gittinger <cg@exept.de>
parents: 868
diff changeset
   118
"/            ]
b9625d9b0881 better block-var name detection
Claus Gittinger <cg@exept.de>
parents: 868
diff changeset
   119
"/        ].
b9625d9b0881 better block-var name detection
Claus Gittinger <cg@exept.de>
parents: 868
diff changeset
   120
9588
dc38e81ec660 comment/format in: #inspect:
Claus Gittinger <cg@exept.de>
parents: 9426
diff changeset
   121
            (method notNil and:[method isWrapped]) ifTrue:[
947
b9625d9b0881 better block-var name detection
Claus Gittinger <cg@exept.de>
parents: 868
diff changeset
   122
            "
b9625d9b0881 better block-var name detection
Claus Gittinger <cg@exept.de>
parents: 868
diff changeset
   123
             in a wrapped context, locals are something different
b9625d9b0881 better block-var name detection
Claus Gittinger <cg@exept.de>
parents: 868
diff changeset
   124
            "
b9625d9b0881 better block-var name detection
Claus Gittinger <cg@exept.de>
parents: 868
diff changeset
   125
"/            argsOnly := true.
1026
b863f3784b3c oops - methods with inlined blockVars did not show its vars
Claus Gittinger <cg@exept.de>
parents: 977
diff changeset
   126
8516
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   127
                m := method originalMethod.
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   128
                m notNil ifTrue:[
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   129
                    method := m.
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   130
                ] ifFalse:[
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   131
                    argsOnly := true.
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   132
                ].
947
b9625d9b0881 better block-var name detection
Claus Gittinger <cg@exept.de>
parents: 868
diff changeset
   133
            ].
b9625d9b0881 better block-var name detection
Claus Gittinger <cg@exept.de>
parents: 868
diff changeset
   134
8516
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   135
            method notNil ifTrue:[
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   136
                "/ method source notNil ifTrue:[
1026
b863f3784b3c oops - methods with inlined blockVars did not show its vars
Claus Gittinger <cg@exept.de>
parents: 977
diff changeset
   137
8516
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   138
                    argsOnly ifTrue:[
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   139
                        homeNames := method methodArgNames
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   140
                    ] ifFalse:[
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   141
                        homeNames := method methodArgAndVarNames.
947
b9625d9b0881 better block-var name detection
Claus Gittinger <cg@exept.de>
parents: 868
diff changeset
   142
8516
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   143
                        "/ did it already allocate its locals ?
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   144
                        homeNames size > (methodHomeContext numArgs + methodHomeContext numVars)
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   145
                        ifTrue:[
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   146
                            homeNames := method methodArgNames.
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   147
                            argsOnly := true.
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   148
                        ].
296
b480a51cfb5f dont buffer values / keep context / update value (now try single stepping with a variable selected)
Claus Gittinger <cg@exept.de>
parents: 200
diff changeset
   149
                    ].
947
b9625d9b0881 better block-var name detection
Claus Gittinger <cg@exept.de>
parents: 868
diff changeset
   150
8516
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   151
                    "/ there is one case, where the above is by purpose:
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   152
                    "/ the #doIt - method, which has been given an invalid
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   153
                    "/ source.
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   154
                    "/ care for this here.
947
b9625d9b0881 better block-var name detection
Claus Gittinger <cg@exept.de>
parents: 868
diff changeset
   155
8516
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   156
                    isDoIt ifTrue:[
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   157
                        homeNames := #().
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   158
                    ] ifFalse:[
947
b9625d9b0881 better block-var name detection
Claus Gittinger <cg@exept.de>
parents: 868
diff changeset
   159
8516
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   160
                        "/ check
785
16809b8d468c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
   161
8516
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   162
                        numVarsInContext := methodHomeContext argsAndVars size.
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   163
                        numVarsInSource := homeNames size.
947
b9625d9b0881 better block-var name detection
Claus Gittinger <cg@exept.de>
parents: 868
diff changeset
   164
8516
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   165
                        numVarsInSource > 0 ifTrue:[
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   166
                            numVarsInContext < numVarsInSource ifTrue:[
947
b9625d9b0881 better block-var name detection
Claus Gittinger <cg@exept.de>
parents: 868
diff changeset
   167
8516
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   168
                                "/ the methods source does not correctly reflect
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   169
                                "/ the number of args&vars in the context.
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   170
                                "/ either outDated, or somehow strange.
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   171
                                "/ (happens with wrapped methods, which are not
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   172
                                "/  what they look)
947
b9625d9b0881 better block-var name detection
Claus Gittinger <cg@exept.de>
parents: 868
diff changeset
   173
8516
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   174
                                numVarsInSource > numVarsInContext ifTrue:[
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   175
                                    homeNames := homeNames copyTo:numVarsInContext.
977
0bd3800f9e4a oops - dont copyFrom: nil
Claus Gittinger <cg@exept.de>
parents: 976
diff changeset
   176
                                ] ifFalse:[
8516
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   177
                                    numVarsInContext >= methodHomeContext numArgs ifTrue:[
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   178
                                        homeNames := homeNames copyTo:methodHomeContext numArgs
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   179
                                    ] ifFalse:[
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   180
                                        homeNames := nil
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   181
                                    ]    
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   182
                                ]
977
0bd3800f9e4a oops - dont copyFrom: nil
Claus Gittinger <cg@exept.de>
parents: 976
diff changeset
   183
                            ]
785
16809b8d468c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
   184
                        ]
296
b480a51cfb5f dont buffer values / keep context / update value (now try single stepping with a variable selected)
Claus Gittinger <cg@exept.de>
parents: 200
diff changeset
   185
                    ]
8516
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   186
                "/ ]
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   187
            ].
73
e332d9c71624 *** empty log message ***
claus
parents: 57
diff changeset
   188
8516
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   189
            "
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   190
             create dummy names for method vars (if there is no source available)
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   191
            "
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   192
            homeNames isNil ifTrue:[
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   193
                homeNames := OrderedCollection new.
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   194
                1 to:methodHomeContext numArgs do:[:index |
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   195
                    homeNames add:('mArg' , index printString)
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   196
                ].
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   197
                argsOnly ifFalse:[
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   198
                    1 to:methodHomeContext numVars do:[:index |
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   199
                        homeNames add:('mVar' , index printString)
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   200
                    ].
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   201
    "/                showingTemporaries ifTrue:[
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   202
    "/                    1 to:methodHomeContext numTemps do:[:index |
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   203
    "/                        homeNames add:('mTmp' , index printString)
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   204
    "/                    ]
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   205
    "/                ]
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   206
                ]
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   207
            ].
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   208
            showingTemporaries ifTrue:[
8581
6246a1e656b6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8516
diff changeset
   209
                homeNames := homeNames asOrderedCollection.
8516
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   210
                1 to:methodHomeContext numTemps do:[:index |
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   211
                    homeNames add:('mTmp' , index printString)
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   212
                ]
296
b480a51cfb5f dont buffer values / keep context / update value (now try single stepping with a variable selected)
Claus Gittinger <cg@exept.de>
parents: 200
diff changeset
   213
            ].
8516
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   214
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   215
            n := homeNames size.
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   216
            n < (methodHomeContext numVars + methodHomeContext numArgs) ifTrue:[
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   217
                "/ its a context which includes locals from
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   218
                "/ inlined sub-blocks.
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   219
                "/ First, generate synthetic varNames ...
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   220
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   221
                homeNames := homeNames asOrderedCollection.
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   222
                tempNames := OrderedCollection new.
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   223
                n to:(methodHomeContext numVars + methodHomeContext numArgs - 1) do:[:inlinedTempIdx |
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   224
                    tempNames add:('*t' , (inlinedTempIdx - n + 1) printString)
296
b480a51cfb5f dont buffer values / keep context / update value (now try single stepping with a variable selected)
Claus Gittinger <cg@exept.de>
parents: 200
diff changeset
   225
                ].
8516
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   226
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   227
                "/ now, see if we can find out more
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   228
                "/ (failes, if source is not available)
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   229
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   230
                method notNil ifTrue:[
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   231
                    (isDoIt and:[tempNames size > 0]) ifTrue:[
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   232
                        "/ special for #doIt
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   233
                        "/ my source is found in the method.
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   234
                        blockNode := Compiler
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   235
                                        blockAtLine:aContext lineNumber
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   236
                                        in:nil
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   237
                                        orSource:('[' , method source , '\]') withCRs
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   238
                                        numArgs:numArgs 
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   239
                                        numVars:numVars.
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   240
                    ] ifFalse:[
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   241
                        blockNode := Compiler 
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   242
                                        blockAtLine:methodHomeContext lineNumber
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   243
                                        in:method
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   244
                                        orSource:nil
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   245
                                        numArgs:numArgs
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   246
                                        numVars:numVars.
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   247
                    ].
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   248
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   249
                    realTempNames := OrderedCollection new.
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   250
                    [blockNode notNil] whileTrue:[
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   251
                        blockNode variables notNil ifTrue:[
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   252
                            realTempNames := (blockNode variables collect:[:aVar | aVar name]) , realTempNames.
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   253
                        ].
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   254
                        blockNode arguments notNil ifTrue:[
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   255
                            realTempNames := (blockNode arguments collect:[:aVar | aVar name]) , realTempNames.
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   256
                        ].
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   257
                        "/
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   258
                        "/ hidden temps used for loop.
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   259
                        "/
9426
f4faa9c4aabc changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 9351
diff changeset
   260
                        blockNode invocationSelector == #timesRepeat ifTrue:[
8516
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   261
                            realTempNames asOrderedCollection addFirst:'*loopStop*'
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   262
                        ] ifFalse:[
9426
f4faa9c4aabc changed: #inspect:
Claus Gittinger <cg@exept.de>
parents: 9351
diff changeset
   263
                            blockNode invocationSelector == #to:do: ifTrue:[
8516
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   264
                                realTempNames asOrderedCollection addFirst:'*loopStop*'
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   265
                            ]
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   266
                        ].
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   267
                        blockNode := blockNode home.
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   268
                    ].
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   269
                    tempNames 
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   270
                            replaceFrom:1 to:(tempNames size min:realTempNames size)
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   271
                            with:realTempNames.
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   272
                ].
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   273
                homeNames addAll:tempNames.
296
b480a51cfb5f dont buffer values / keep context / update value (now try single stepping with a variable selected)
Claus Gittinger <cg@exept.de>
parents: 200
diff changeset
   274
            ]
b480a51cfb5f dont buffer values / keep context / update value (now try single stepping with a variable selected)
Claus Gittinger <cg@exept.de>
parents: 200
diff changeset
   275
        ].
1204
e2f7a2409f7d inlined vars/args are shown as *t<i>
Claus Gittinger <cg@exept.de>
parents: 1026
diff changeset
   276
8516
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   277
        "
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   278
         stupid: should find the block via the contexts
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   279
         method-home and put real names in here
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   280
        "
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   281
        aContext isBlockContext ifTrue:[
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   282
            names := self namesOfBlockContext:aContext.
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   283
            hCon := aContext home.
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   284
            [hCon == methodHomeContext] whileFalse:[
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   285
                names addAll:(self namesOfBlockContext:hCon).
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   286
                hCon := hCon home.
1370
d322faba88b9 better extract of block-var-names
Claus Gittinger <cg@exept.de>
parents: 1361
diff changeset
   287
            ].
8516
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   288
            names addAll:homeNames.
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   289
        ] ifFalse:[
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   290
            names := homeNames.
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   291
        ].
1370
d322faba88b9 better extract of block-var-names
Claus Gittinger <cg@exept.de>
parents: 1361
diff changeset
   292
8516
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   293
        listView list:(self fieldList). 
1370
d322faba88b9 better extract of block-var-names
Claus Gittinger <cg@exept.de>
parents: 1361
diff changeset
   294
8516
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   295
        workspace contents:nil.
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   296
        self setDoitActionIn:workspace for:aContext.
34
d904237f7c44 Initial revision
claus
parents:
diff changeset
   297
    ].
51
57c1ccc3d7e0 *** empty log message ***
claus
parents: 49
diff changeset
   298
8516
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   299
    oldSelectedName notNil ifTrue:[
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   300
        |idx|
73
e332d9c71624 *** empty log message ***
claus
parents: 57
diff changeset
   301
8516
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   302
        idx := listView list indexOf:oldSelectedName.
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   303
        idx ~~ 0 "(names includes:oldSelectedName)" ifTrue:[
1769
6b904f69858f try to reselect the same name-entry, if inspected context
Claus Gittinger <cg@exept.de>
parents: 1664
diff changeset
   304
            listView selectElement:oldSelectedName.
8516
e83b1f8fe73f reselection - keep shown entry (all locals in debugger)
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   305
            self showSelection:idx.
1769
6b904f69858f try to reselect the same name-entry, if inspected context
Claus Gittinger <cg@exept.de>
parents: 1664
diff changeset
   306
        ]
6b904f69858f try to reselect the same name-entry, if inspected context
Claus Gittinger <cg@exept.de>
parents: 1664
diff changeset
   307
    ].
6b904f69858f try to reselect the same name-entry, if inspected context
Claus Gittinger <cg@exept.de>
parents: 1664
diff changeset
   308
9588
dc38e81ec660 comment/format in: #inspect:
Claus Gittinger <cg@exept.de>
parents: 9426
diff changeset
   309
    "Modified: / 22-10-2010 / 11:47:48 / cg"
34
d904237f7c44 Initial revision
claus
parents:
diff changeset
   310
!
d904237f7c44 Initial revision
claus
parents:
diff changeset
   311
5339
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   312
namesOfBlockContext:aContext
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   313
    |numArgs numVars argAndVarNames argNames varNames tmpNames names|
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   314
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   315
    numArgs := aContext numArgs.
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   316
    numVars := aContext numVars.
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   317
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   318
    (numArgs > 0 or:[numVars > 0]) ifTrue:[
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   319
        argAndVarNames := aContext argAndVarNames.
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   320
        argAndVarNames notEmptyOrNil ifTrue:[
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   321
            argNames := argAndVarNames copyTo:numArgs.
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   322
            varNames := argAndVarNames copyFrom:numArgs+1.
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   323
        ].
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   324
    ].
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   325
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   326
    names := OrderedCollection new.
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   327
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   328
    argNames isNil ifTrue:[
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   329
        argNames := (1 to:numArgs) collect:[:i | 'arg' , i printString].
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   330
    ].
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   331
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   332
    names addAll:argNames.
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   333
    varNames isNil ifTrue:[
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   334
        varNames := (1 to:numVars) collect:[:i | 'var' , i printString].
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   335
    ] ifFalse:[
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   336
        varNames size ~~ numVars ifTrue:[
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   337
            varNames := varNames asOrderedCollection.
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   338
            varNames size+1 to:aContext numVars do:[:i |
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   339
                varNames add:('var' , i printString)
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   340
            ]
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   341
        ]
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   342
    ].
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   343
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   344
    names addAll:varNames.
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   345
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   346
    showingTemporaries ifTrue:[
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   347
        tmpNames := (1 to:(aContext numTemps)) collect:[:i | 'tmp' , i printString].
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   348
        names addAll:tmpNames.
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   349
    ].
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   350
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   351
    ^ names
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   352
!
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   353
34
d904237f7c44 Initial revision
claus
parents:
diff changeset
   354
release
d904237f7c44 Initial revision
claus
parents:
diff changeset
   355
    "release inspected object"
d904237f7c44 Initial revision
claus
parents:
diff changeset
   356
d904237f7c44 Initial revision
claus
parents:
diff changeset
   357
    inspectedContext := nil.
296
b480a51cfb5f dont buffer values / keep context / update value (now try single stepping with a variable selected)
Claus Gittinger <cg@exept.de>
parents: 200
diff changeset
   358
    names := nil.
34
d904237f7c44 Initial revision
claus
parents:
diff changeset
   359
    super release
296
b480a51cfb5f dont buffer values / keep context / update value (now try single stepping with a variable selected)
Claus Gittinger <cg@exept.de>
parents: 200
diff changeset
   360
297
3d34ce6e2b22 oops - leftover printMessage removed
Claus Gittinger <cg@exept.de>
parents: 296
diff changeset
   361
    "Modified: 14.12.1995 / 21:49:43 / cg"
34
d904237f7c44 Initial revision
claus
parents:
diff changeset
   362
! !
d904237f7c44 Initial revision
claus
parents:
diff changeset
   363
73
e332d9c71624 *** empty log message ***
claus
parents: 57
diff changeset
   364
!ContextInspectorView methodsFor:'initialization'!
51
57c1ccc3d7e0 *** empty log message ***
claus
parents: 49
diff changeset
   365
6491
d02c41c57d02 better menu
Claus Gittinger <cg@exept.de>
parents: 6404
diff changeset
   366
initialize
d02c41c57d02 better menu
Claus Gittinger <cg@exept.de>
parents: 6404
diff changeset
   367
    super initialize.
d02c41c57d02 better menu
Claus Gittinger <cg@exept.de>
parents: 6404
diff changeset
   368
    showingTemporaries := false.
d02c41c57d02 better menu
Claus Gittinger <cg@exept.de>
parents: 6404
diff changeset
   369
d02c41c57d02 better menu
Claus Gittinger <cg@exept.de>
parents: 6404
diff changeset
   370
! !
d02c41c57d02 better menu
Claus Gittinger <cg@exept.de>
parents: 6404
diff changeset
   371
d02c41c57d02 better menu
Claus Gittinger <cg@exept.de>
parents: 6404
diff changeset
   372
!ContextInspectorView methodsFor:'menu'!
d02c41c57d02 better menu
Claus Gittinger <cg@exept.de>
parents: 6404
diff changeset
   373
73
e332d9c71624 *** empty log message ***
claus
parents: 57
diff changeset
   374
fieldMenu
1596
1c937a1d2d37 use new menu-creation message in PopUpMenu.
Claus Gittinger <cg@exept.de>
parents: 1523
diff changeset
   375
    "return a popUpMenu for the left (fields) pane"
1c937a1d2d37 use new menu-creation message in PopUpMenu.
Claus Gittinger <cg@exept.de>
parents: 1523
diff changeset
   376
1361
20c353524524 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1204
diff changeset
   377
    <resource: #programMenu >
20c353524524 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1204
diff changeset
   378
6491
d02c41c57d02 better menu
Claus Gittinger <cg@exept.de>
parents: 6404
diff changeset
   379
    |items m sel|
d02c41c57d02 better menu
Claus Gittinger <cg@exept.de>
parents: 6404
diff changeset
   380
d02c41c57d02 better menu
Claus Gittinger <cg@exept.de>
parents: 6404
diff changeset
   381
    items := #(
d02c41c57d02 better menu
Claus Gittinger <cg@exept.de>
parents: 6404
diff changeset
   382
                   ('Copy Name or Key'      #doCopyKey)
d02c41c57d02 better menu
Claus Gittinger <cg@exept.de>
parents: 6404
diff changeset
   383
                   ('-')
d02c41c57d02 better menu
Claus Gittinger <cg@exept.de>
parents: 6404
diff changeset
   384
                   ('Inspect'               #doInspect)
d02c41c57d02 better menu
Claus Gittinger <cg@exept.de>
parents: 6404
diff changeset
   385
                   ('BasicInspect'          #doBasicInspect)
9351
99bd94741d5d do not show new-inspector in menu, if there is none loaded
Claus Gittinger <cg@exept.de>
parents: 9033
diff changeset
   386
             ).
99bd94741d5d do not show new-inspector in menu, if there is none loaded
Claus Gittinger <cg@exept.de>
parents: 9033
diff changeset
   387
    NewInspector::NewInspectorView notNil ifTrue:[
99bd94741d5d do not show new-inspector in menu, if there is none loaded
Claus Gittinger <cg@exept.de>
parents: 9033
diff changeset
   388
        items := items , #(
99bd94741d5d do not show new-inspector in menu, if there is none loaded
Claus Gittinger <cg@exept.de>
parents: 9033
diff changeset
   389
                       ('Inspect Hierarchical'         #doNewInspect           )
99bd94741d5d do not show new-inspector in menu, if there is none loaded
Claus Gittinger <cg@exept.de>
parents: 9033
diff changeset
   390
                ).
99bd94741d5d do not show new-inspector in menu, if there is none loaded
Claus Gittinger <cg@exept.de>
parents: 9033
diff changeset
   391
    ].
99bd94741d5d do not show new-inspector in menu, if there is none loaded
Claus Gittinger <cg@exept.de>
parents: 9033
diff changeset
   392
    items := items , #(
6491
d02c41c57d02 better menu
Claus Gittinger <cg@exept.de>
parents: 6404
diff changeset
   393
                   ('-')
d02c41c57d02 better menu
Claus Gittinger <cg@exept.de>
parents: 6404
diff changeset
   394
                   ('Browse'                #browse)
d02c41c57d02 better menu
Claus Gittinger <cg@exept.de>
parents: 6404
diff changeset
   395
              ).
d02c41c57d02 better menu
Claus Gittinger <cg@exept.de>
parents: 6404
diff changeset
   396
d02c41c57d02 better menu
Claus Gittinger <cg@exept.de>
parents: 6404
diff changeset
   397
    sel := self selection.
6852
39c9b68020eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6491
diff changeset
   398
    Error 
39c9b68020eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6491
diff changeset
   399
        handle:[:ex| ]
39c9b68020eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6491
diff changeset
   400
        do:[
7438
b9eab5a1a36a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   401
            (sel isBlock or:[sel isContext]) ifTrue:[
b9eab5a1a36a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   402
                items := items , #(
b9eab5a1a36a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   403
                               ('Browse Blocks Home'           #browseHome)
b9eab5a1a36a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   404
                      ).
b9eab5a1a36a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   405
            ].
b9eab5a1a36a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   406
            (sel isMethod) ifTrue:[
b9eab5a1a36a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   407
                items := items , #(
b9eab5a1a36a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   408
                               ('Browse Methods Class'         #browseMethodsClass)
b9eab5a1a36a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   409
                         ).
b9eab5a1a36a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   410
            ].
6852
39c9b68020eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6491
diff changeset
   411
        ].
39c9b68020eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6491
diff changeset
   412
7640
692b99f5d3fe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7438
diff changeset
   413
    items := items , (self optionalStreamSelectionItems).
692b99f5d3fe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7438
diff changeset
   414
    items := items , (self optionalFilenameSelectionItems).
692b99f5d3fe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7438
diff changeset
   415
6491
d02c41c57d02 better menu
Claus Gittinger <cg@exept.de>
parents: 6404
diff changeset
   416
    items := items , #(
d02c41c57d02 better menu
Claus Gittinger <cg@exept.de>
parents: 6404
diff changeset
   417
               ('-')
d02c41c57d02 better menu
Claus Gittinger <cg@exept.de>
parents: 6404
diff changeset
   418
              ).
73
e332d9c71624 *** empty log message ***
claus
parents: 57
diff changeset
   419
e332d9c71624 *** empty log message ***
claus
parents: 57
diff changeset
   420
    showingTemporaries ifFalse:[
6491
d02c41c57d02 better menu
Claus Gittinger <cg@exept.de>
parents: 6404
diff changeset
   421
        items := items , #(
d02c41c57d02 better menu
Claus Gittinger <cg@exept.de>
parents: 6404
diff changeset
   422
                       ('Show Temporaries'      #showTemporaries)
1596
1c937a1d2d37 use new menu-creation message in PopUpMenu.
Claus Gittinger <cg@exept.de>
parents: 1523
diff changeset
   423
                  )
73
e332d9c71624 *** empty log message ***
claus
parents: 57
diff changeset
   424
    ] ifTrue:[
6491
d02c41c57d02 better menu
Claus Gittinger <cg@exept.de>
parents: 6404
diff changeset
   425
        items := items , #(
d02c41c57d02 better menu
Claus Gittinger <cg@exept.de>
parents: 6404
diff changeset
   426
                       ('Hide temporaries'      #hideTemporaries)
1596
1c937a1d2d37 use new menu-creation message in PopUpMenu.
Claus Gittinger <cg@exept.de>
parents: 1523
diff changeset
   427
                  )
73
e332d9c71624 *** empty log message ***
claus
parents: 57
diff changeset
   428
    ].
e332d9c71624 *** empty log message ***
claus
parents: 57
diff changeset
   429
7640
692b99f5d3fe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7438
diff changeset
   430
    items := items , (self numberBaseItems).
692b99f5d3fe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7438
diff changeset
   431
3105
9d80b49560ca added browse blocks home menu item
Claus Gittinger <cg@exept.de>
parents: 2957
diff changeset
   432
    m := PopUpMenu
1596
1c937a1d2d37 use new menu-creation message in PopUpMenu.
Claus Gittinger <cg@exept.de>
parents: 1523
diff changeset
   433
          itemList:items
3105
9d80b49560ca added browse blocks home menu item
Claus Gittinger <cg@exept.de>
parents: 2957
diff changeset
   434
          resources:resources.
9d80b49560ca added browse blocks home menu item
Claus Gittinger <cg@exept.de>
parents: 2957
diff changeset
   435
3425
63909439cbe8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3200
diff changeset
   436
    selectionIndex isNil ifTrue:[
63909439cbe8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3200
diff changeset
   437
        m disableAll:#(doInspect doBasicInspect browse browseHome)
63909439cbe8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3200
diff changeset
   438
    ] ifFalse:[
6491
d02c41c57d02 better menu
Claus Gittinger <cg@exept.de>
parents: 6404
diff changeset
   439
        sel isBlock ifFalse:[
3425
63909439cbe8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3200
diff changeset
   440
            m disable:#browseHome
6491
d02c41c57d02 better menu
Claus Gittinger <cg@exept.de>
parents: 6404
diff changeset
   441
        ].
d02c41c57d02 better menu
Claus Gittinger <cg@exept.de>
parents: 6404
diff changeset
   442
        sel class hasImmediateInstances ifTrue:[
d02c41c57d02 better menu
Claus Gittinger <cg@exept.de>
parents: 6404
diff changeset
   443
            m disableAll:#(showReferences doNewInspect)
d02c41c57d02 better menu
Claus Gittinger <cg@exept.de>
parents: 6404
diff changeset
   444
        ].
3105
9d80b49560ca added browse blocks home menu item
Claus Gittinger <cg@exept.de>
parents: 2957
diff changeset
   445
    ].
9d80b49560ca added browse blocks home menu item
Claus Gittinger <cg@exept.de>
parents: 2957
diff changeset
   446
    ^ m
1361
20c353524524 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1204
diff changeset
   447
7640
692b99f5d3fe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7438
diff changeset
   448
    "Modified: / 09-02-2007 / 16:11:40 / cg"
73
e332d9c71624 *** empty log message ***
claus
parents: 57
diff changeset
   449
! !
200
01ce3d3636d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 188
diff changeset
   450
01ce3d3636d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 188
diff changeset
   451
!ContextInspectorView methodsFor:'private'!
01ce3d3636d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 188
diff changeset
   452
647
1791ceddf2ef checkin from browser
Claus Gittinger <cg@exept.de>
parents: 645
diff changeset
   453
defaultLabel
4095
5bd36b14723d labels; added suppressPseudoVars & dereferenceValueHolders
Claus Gittinger <cg@exept.de>
parents: 3775
diff changeset
   454
    ^ 'Locals'
647
1791ceddf2ef checkin from browser
Claus Gittinger <cg@exept.de>
parents: 645
diff changeset
   455
1791ceddf2ef checkin from browser
Claus Gittinger <cg@exept.de>
parents: 645
diff changeset
   456
    "
1791ceddf2ef checkin from browser
Claus Gittinger <cg@exept.de>
parents: 645
diff changeset
   457
     ContextInspectorView openOn:thisContext sender
1791ceddf2ef checkin from browser
Claus Gittinger <cg@exept.de>
parents: 645
diff changeset
   458
    "
1791ceddf2ef checkin from browser
Claus Gittinger <cg@exept.de>
parents: 645
diff changeset
   459
1791ceddf2ef checkin from browser
Claus Gittinger <cg@exept.de>
parents: 645
diff changeset
   460
    "Modified: 28.6.1996 / 16:07:49 / cg"
1791ceddf2ef checkin from browser
Claus Gittinger <cg@exept.de>
parents: 645
diff changeset
   461
!
1791ceddf2ef checkin from browser
Claus Gittinger <cg@exept.de>
parents: 645
diff changeset
   462
3775
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   463
displayStringForValue:someValue 
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   464
    "return the values displayString"
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   465
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   466
    |sel|
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   467
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   468
    sel := listView at:selectionIndex.
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   469
    (sel startsWith:'-all local vars') ifTrue:[
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   470
        ^ self stringWithAllLocalValues
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   471
    ].
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   472
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   473
    ^ super displayStringForValue:someValue
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   474
!
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   475
200
01ce3d3636d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 188
diff changeset
   476
fieldList
3775
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   477
    names size == 0 ifTrue:[^ names].
9033
abeca4d8f0f0 no need for #asText to emphasize a string
Claus Gittinger <cg@exept.de>
parents: 8690
diff changeset
   478
    ^ (Array with:('-', 'all local vars' allItalic)) , names
200
01ce3d3636d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 188
diff changeset
   479
!
01ce3d3636d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 188
diff changeset
   480
296
b480a51cfb5f dont buffer values / keep context / update value (now try single stepping with a variable selected)
Claus Gittinger <cg@exept.de>
parents: 200
diff changeset
   481
hasSelfEntry
b480a51cfb5f dont buffer values / keep context / update value (now try single stepping with a variable selected)
Claus Gittinger <cg@exept.de>
parents: 200
diff changeset
   482
    ^ false
b480a51cfb5f dont buffer values / keep context / update value (now try single stepping with a variable selected)
Claus Gittinger <cg@exept.de>
parents: 200
diff changeset
   483
b480a51cfb5f dont buffer values / keep context / update value (now try single stepping with a variable selected)
Claus Gittinger <cg@exept.de>
parents: 200
diff changeset
   484
    "Created: 14.12.1995 / 19:29:47 / cg"
b480a51cfb5f dont buffer values / keep context / update value (now try single stepping with a variable selected)
Claus Gittinger <cg@exept.de>
parents: 200
diff changeset
   485
!
b480a51cfb5f dont buffer values / keep context / update value (now try single stepping with a variable selected)
Claus Gittinger <cg@exept.de>
parents: 200
diff changeset
   486
200
01ce3d3636d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 188
diff changeset
   487
setDoitActionIn:aWorkspace for:aContext
1596
1c937a1d2d37 use new menu-creation message in PopUpMenu.
Claus Gittinger <cg@exept.de>
parents: 1523
diff changeset
   488
    aWorkspace 
1c937a1d2d37 use new menu-creation message in PopUpMenu.
Claus Gittinger <cg@exept.de>
parents: 1523
diff changeset
   489
        doItAction:[:theCode |
1c937a1d2d37 use new menu-creation message in PopUpMenu.
Claus Gittinger <cg@exept.de>
parents: 1523
diff changeset
   490
            Compiler 
1c937a1d2d37 use new menu-creation message in PopUpMenu.
Claus Gittinger <cg@exept.de>
parents: 1523
diff changeset
   491
                evaluate:theCode
1c937a1d2d37 use new menu-creation message in PopUpMenu.
Claus Gittinger <cg@exept.de>
parents: 1523
diff changeset
   492
                in:aContext
1c937a1d2d37 use new menu-creation message in PopUpMenu.
Claus Gittinger <cg@exept.de>
parents: 1523
diff changeset
   493
                receiver:nil
1c937a1d2d37 use new menu-creation message in PopUpMenu.
Claus Gittinger <cg@exept.de>
parents: 1523
diff changeset
   494
                notifying:aWorkspace
1c937a1d2d37 use new menu-creation message in PopUpMenu.
Claus Gittinger <cg@exept.de>
parents: 1523
diff changeset
   495
                logged:true 
1c937a1d2d37 use new menu-creation message in PopUpMenu.
Claus Gittinger <cg@exept.de>
parents: 1523
diff changeset
   496
                ifFail:nil
1c937a1d2d37 use new menu-creation message in PopUpMenu.
Claus Gittinger <cg@exept.de>
parents: 1523
diff changeset
   497
        ]
200
01ce3d3636d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 188
diff changeset
   498
!
01ce3d3636d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 188
diff changeset
   499
3775
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   500
stringWithAllLocalValues
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   501
    |s  maxLen varString|
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   502
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   503
    s := '' writeStream.
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   504
    maxLen := (names collect:[:eachName | eachName size]) max.
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   505
    names keysAndValuesDo:[:varIdx :eachLocalName |
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   506
        s nextPutAll:((eachLocalName , ' ') paddedTo:maxLen+1 with:$.).
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   507
        s nextPutAll:' : '.
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   508
5922
354cc187ba57 catch errors in displayString
martin
parents: 5803
diff changeset
   509
        [
8634
a37194c645be limit printStrings (in case an instvar is ByteArray of size 80Mb)
Claus Gittinger <cg@exept.de>
parents: 8581
diff changeset
   510
            |s|
a37194c645be limit printStrings (in case an instvar is ByteArray of size 80Mb)
Claus Gittinger <cg@exept.de>
parents: 8581
diff changeset
   511
a37194c645be limit printStrings (in case an instvar is ByteArray of size 80Mb)
Claus Gittinger <cg@exept.de>
parents: 8581
diff changeset
   512
            s := WriteStream on:(String new:10).
a37194c645be limit printStrings (in case an instvar is ByteArray of size 80Mb)
Claus Gittinger <cg@exept.de>
parents: 8581
diff changeset
   513
            s writeLimit:100000.
a37194c645be limit printStrings (in case an instvar is ByteArray of size 80Mb)
Claus Gittinger <cg@exept.de>
parents: 8581
diff changeset
   514
            (self valueAtIndex:varIdx) displayOn:s.
a37194c645be limit printStrings (in case an instvar is ByteArray of size 80Mb)
Claus Gittinger <cg@exept.de>
parents: 8581
diff changeset
   515
            varString := s contents.
a37194c645be limit printStrings (in case an instvar is ByteArray of size 80Mb)
Claus Gittinger <cg@exept.de>
parents: 8581
diff changeset
   516
"/            varString := (self valueAtIndex:varIdx) displayString.
a37194c645be limit printStrings (in case an instvar is ByteArray of size 80Mb)
Claus Gittinger <cg@exept.de>
parents: 8581
diff changeset
   517
        ] on:Error do:[:ex |
a37194c645be limit printStrings (in case an instvar is ByteArray of size 80Mb)
Claus Gittinger <cg@exept.de>
parents: 8581
diff changeset
   518
            varString := ('*** Error in displayString (%1)***' bindWith:ex description)
5922
354cc187ba57 catch errors in displayString
martin
parents: 5803
diff changeset
   519
        ].
6404
f4c76a21ba34 care for local value with invalid class.
Claus Gittinger <cg@exept.de>
parents: 5922
diff changeset
   520
        varString := varString ? ''.
5922
354cc187ba57 catch errors in displayString
martin
parents: 5803
diff changeset
   521
3775
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   522
        (varString includes:Character cr) ifTrue:[
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   523
            varString := varString copyTo:(varString indexOf:Character cr)-1.
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   524
            varString := varString , '...'.
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   525
        ].
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   526
        s nextPutAll:varString.
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   527
        s cr.
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   528
    ].
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   529
    ^ s contents
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   530
!
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   531
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   532
valueAtIndex:varIdx
200
01ce3d3636d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 188
diff changeset
   533
    "helper - return the value of the selected entry"
01ce3d3636d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 188
diff changeset
   534
5339
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   535
    |methodHomeContext hCon theContext values|
296
b480a51cfb5f dont buffer values / keep context / update value (now try single stepping with a variable selected)
Claus Gittinger <cg@exept.de>
parents: 200
diff changeset
   536
b480a51cfb5f dont buffer values / keep context / update value (now try single stepping with a variable selected)
Claus Gittinger <cg@exept.de>
parents: 200
diff changeset
   537
    inspectedContext isNil ifTrue:[^ nil].
b480a51cfb5f dont buffer values / keep context / update value (now try single stepping with a variable selected)
Claus Gittinger <cg@exept.de>
parents: 200
diff changeset
   538
b480a51cfb5f dont buffer values / keep context / update value (now try single stepping with a variable selected)
Claus Gittinger <cg@exept.de>
parents: 200
diff changeset
   539
    argsOnly := false.
868
b5f5f5723793 renamed vars for WIN32
Claus Gittinger <cg@exept.de>
parents: 840
diff changeset
   540
    theContext := inspectedContext.
5339
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   541
    methodHomeContext := theContext methodHome.
296
b480a51cfb5f dont buffer values / keep context / update value (now try single stepping with a variable selected)
Claus Gittinger <cg@exept.de>
parents: 200
diff changeset
   542
868
b5f5f5723793 renamed vars for WIN32
Claus Gittinger <cg@exept.de>
parents: 840
diff changeset
   543
    theContext isBlockContext ifTrue:[
b5f5f5723793 renamed vars for WIN32
Claus Gittinger <cg@exept.de>
parents: 840
diff changeset
   544
        values := Array withAll:(theContext argsAndVars).
b5f5f5723793 renamed vars for WIN32
Claus Gittinger <cg@exept.de>
parents: 840
diff changeset
   545
        (showingTemporaries and:[theContext numTemps ~~ 0]) ifTrue:[
b5f5f5723793 renamed vars for WIN32
Claus Gittinger <cg@exept.de>
parents: 840
diff changeset
   546
            values := values , theContext temporaries
296
b480a51cfb5f dont buffer values / keep context / update value (now try single stepping with a variable selected)
Claus Gittinger <cg@exept.de>
parents: 200
diff changeset
   547
        ].
5339
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   548
        hCon := theContext home.
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   549
        [hCon == methodHomeContext] whileFalse:[
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   550
            values := values , hCon argsAndVars.
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   551
            (showingTemporaries and:[theContext numTemps ~~ 0]) ifTrue:[
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   552
                values := values , hCon temporaries
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   553
            ].
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   554
            hCon := hCon home.
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   555
        ].
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   556
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   557
        methodHomeContext notNil ifTrue:[
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   558
            values := values , methodHomeContext args.
296
b480a51cfb5f dont buffer values / keep context / update value (now try single stepping with a variable selected)
Claus Gittinger <cg@exept.de>
parents: 200
diff changeset
   559
            argsOnly ifFalse:[
5339
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   560
                values := values , methodHomeContext vars.
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   561
                (showingTemporaries and:[methodHomeContext numTemps ~~ 0])ifTrue:[
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   562
                    values := values , methodHomeContext temporaries
296
b480a51cfb5f dont buffer values / keep context / update value (now try single stepping with a variable selected)
Claus Gittinger <cg@exept.de>
parents: 200
diff changeset
   563
                ]
b480a51cfb5f dont buffer values / keep context / update value (now try single stepping with a variable selected)
Claus Gittinger <cg@exept.de>
parents: 200
diff changeset
   564
            ].
b480a51cfb5f dont buffer values / keep context / update value (now try single stepping with a variable selected)
Claus Gittinger <cg@exept.de>
parents: 200
diff changeset
   565
        ].
b480a51cfb5f dont buffer values / keep context / update value (now try single stepping with a variable selected)
Claus Gittinger <cg@exept.de>
parents: 200
diff changeset
   566
    ] ifFalse:[
b480a51cfb5f dont buffer values / keep context / update value (now try single stepping with a variable selected)
Claus Gittinger <cg@exept.de>
parents: 200
diff changeset
   567
        argsOnly ifTrue:[
5339
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   568
            values := methodHomeContext args
296
b480a51cfb5f dont buffer values / keep context / update value (now try single stepping with a variable selected)
Claus Gittinger <cg@exept.de>
parents: 200
diff changeset
   569
        ] ifFalse:[
5339
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   570
            values := methodHomeContext argsAndVars
1395
1c7f8d3794f7 context vars
Claus Gittinger <cg@exept.de>
parents: 1377
diff changeset
   571
        ].
5339
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   572
        (showingTemporaries and:[methodHomeContext numTemps ~~ 0])ifTrue:[
a740e2325527 also show argAndVarNames of outer blocks.
Claus Gittinger <cg@exept.de>
parents: 5148
diff changeset
   573
            values := values , methodHomeContext temporaries
296
b480a51cfb5f dont buffer values / keep context / update value (now try single stepping with a variable selected)
Claus Gittinger <cg@exept.de>
parents: 200
diff changeset
   574
        ]
1395
1c7f8d3794f7 context vars
Claus Gittinger <cg@exept.de>
parents: 1377
diff changeset
   575
296
b480a51cfb5f dont buffer values / keep context / update value (now try single stepping with a variable selected)
Claus Gittinger <cg@exept.de>
parents: 200
diff changeset
   576
    ].
b480a51cfb5f dont buffer values / keep context / update value (now try single stepping with a variable selected)
Claus Gittinger <cg@exept.de>
parents: 200
diff changeset
   577
3775
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   578
    ^ values at:varIdx.
200
01ce3d3636d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 188
diff changeset
   579
1395
1c7f8d3794f7 context vars
Claus Gittinger <cg@exept.de>
parents: 1377
diff changeset
   580
    "Modified: / 13.1.1998 / 15:55:16 / cg"
3775
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   581
!
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   582
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   583
valueAtLine:lineNr
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   584
    "helper - return the value of the selected entry"
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   585
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   586
    |varIdx l|
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   587
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   588
    inspectedContext isNil ifTrue:[^ nil].
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   589
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   590
    varIdx := lineNr.
8437
sr
parents: 7640
diff changeset
   591
    l := listView at:lineNr.
sr
parents: 7640
diff changeset
   592
    l isNil ifTrue:[ ^nil].
sr
parents: 7640
diff changeset
   593
sr
parents: 7640
diff changeset
   594
    (l startsWith:$-) ifTrue:[
3775
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   595
        (l ~= '-') ifTrue:[
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   596
            ^ self valueForSpecialLine:(listView at:lineNr)
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   597
        ].
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   598
    ].
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   599
    ^ self valueAtIndex:(varIdx - 1). "/ for the special var
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   600
!
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   601
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   602
valueForSpecialLine:line
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   603
    (line startsWith:'-all local vars') ifTrue:[
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   604
        ^ inspectedObject
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   605
    ].
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   606
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   607
    self error:'unknown special line'.
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   608
6537791170d8 added all local vars
Claus Gittinger <cg@exept.de>
parents: 3425
diff changeset
   609
    "Created: / 31.10.2001 / 09:17:45 / cg"
200
01ce3d3636d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 188
diff changeset
   610
! !
01ce3d3636d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 188
diff changeset
   611
01ce3d3636d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 188
diff changeset
   612
!ContextInspectorView methodsFor:'user actions'!
01ce3d3636d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 188
diff changeset
   613
01ce3d3636d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 188
diff changeset
   614
doAccept:theText
1596
1c937a1d2d37 use new menu-creation message in PopUpMenu.
Claus Gittinger <cg@exept.de>
parents: 1523
diff changeset
   615
    "text in the right pane was accepted - evaluate the contents and
1c937a1d2d37 use new menu-creation message in PopUpMenu.
Claus Gittinger <cg@exept.de>
parents: 1523
diff changeset
   616
     assign to the selected field"
1c937a1d2d37 use new menu-creation message in PopUpMenu.
Claus Gittinger <cg@exept.de>
parents: 1523
diff changeset
   617
4095
5bd36b14723d labels; added suppressPseudoVars & dereferenceValueHolders
Claus Gittinger <cg@exept.de>
parents: 3775
diff changeset
   618
    super doAccept:theText.
5bd36b14723d labels; added suppressPseudoVars & dereferenceValueHolders
Claus Gittinger <cg@exept.de>
parents: 3775
diff changeset
   619
"/    |newValue|
5bd36b14723d labels; added suppressPseudoVars & dereferenceValueHolders
Claus Gittinger <cg@exept.de>
parents: 3775
diff changeset
   620
"/
5bd36b14723d labels; added suppressPseudoVars & dereferenceValueHolders
Claus Gittinger <cg@exept.de>
parents: 3775
diff changeset
   621
"/    selectionIndex notNil ifTrue:[
5bd36b14723d labels; added suppressPseudoVars & dereferenceValueHolders
Claus Gittinger <cg@exept.de>
parents: 3775
diff changeset
   622
"/        newValue := inspectedObject class evaluatorClass 
5bd36b14723d labels; added suppressPseudoVars & dereferenceValueHolders
Claus Gittinger <cg@exept.de>
parents: 3775
diff changeset
   623
"/                       evaluate:theText
5bd36b14723d labels; added suppressPseudoVars & dereferenceValueHolders
Claus Gittinger <cg@exept.de>
parents: 3775
diff changeset
   624
"/                       receiver:inspectedObject 
5bd36b14723d labels; added suppressPseudoVars & dereferenceValueHolders
Claus Gittinger <cg@exept.de>
parents: 3775
diff changeset
   625
"/                       notifying:workspace.
5bd36b14723d labels; added suppressPseudoVars & dereferenceValueHolders
Claus Gittinger <cg@exept.de>
parents: 3775
diff changeset
   626
"/
5bd36b14723d labels; added suppressPseudoVars & dereferenceValueHolders
Claus Gittinger <cg@exept.de>
parents: 3775
diff changeset
   627
"/        "yes, you can do that with a context"
5bd36b14723d labels; added suppressPseudoVars & dereferenceValueHolders
Claus Gittinger <cg@exept.de>
parents: 3775
diff changeset
   628
"/        inspectedContext at:selectionIndex put:newValue.
5bd36b14723d labels; added suppressPseudoVars & dereferenceValueHolders
Claus Gittinger <cg@exept.de>
parents: 3775
diff changeset
   629
"/    ].
200
01ce3d3636d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 188
diff changeset
   630
!
01ce3d3636d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 188
diff changeset
   631
01ce3d3636d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 188
diff changeset
   632
hideTemporaries
296
b480a51cfb5f dont buffer values / keep context / update value (now try single stepping with a variable selected)
Claus Gittinger <cg@exept.de>
parents: 200
diff changeset
   633
    "do not show contexts temporaries"
b480a51cfb5f dont buffer values / keep context / update value (now try single stepping with a variable selected)
Claus Gittinger <cg@exept.de>
parents: 200
diff changeset
   634
200
01ce3d3636d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 188
diff changeset
   635
    showingTemporaries := false.
01ce3d3636d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 188
diff changeset
   636
    self inspect:inspectedContext
01ce3d3636d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 188
diff changeset
   637
296
b480a51cfb5f dont buffer values / keep context / update value (now try single stepping with a variable selected)
Claus Gittinger <cg@exept.de>
parents: 200
diff changeset
   638
    "Modified: 14.12.1995 / 19:24:44 / cg"
200
01ce3d3636d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 188
diff changeset
   639
!
01ce3d3636d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 188
diff changeset
   640
01ce3d3636d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 188
diff changeset
   641
showTemporaries
296
b480a51cfb5f dont buffer values / keep context / update value (now try single stepping with a variable selected)
Claus Gittinger <cg@exept.de>
parents: 200
diff changeset
   642
    "show contexts temporaries"
b480a51cfb5f dont buffer values / keep context / update value (now try single stepping with a variable selected)
Claus Gittinger <cg@exept.de>
parents: 200
diff changeset
   643
200
01ce3d3636d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 188
diff changeset
   644
    showingTemporaries := true.
01ce3d3636d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 188
diff changeset
   645
    self inspect:inspectedContext
296
b480a51cfb5f dont buffer values / keep context / update value (now try single stepping with a variable selected)
Claus Gittinger <cg@exept.de>
parents: 200
diff changeset
   646
b480a51cfb5f dont buffer values / keep context / update value (now try single stepping with a variable selected)
Claus Gittinger <cg@exept.de>
parents: 200
diff changeset
   647
    "Modified: 14.12.1995 / 19:24:49 / cg"
4095
5bd36b14723d labels; added suppressPseudoVars & dereferenceValueHolders
Claus Gittinger <cg@exept.de>
parents: 3775
diff changeset
   648
!
5bd36b14723d labels; added suppressPseudoVars & dereferenceValueHolders
Claus Gittinger <cg@exept.de>
parents: 3775
diff changeset
   649
5bd36b14723d labels; added suppressPseudoVars & dereferenceValueHolders
Claus Gittinger <cg@exept.de>
parents: 3775
diff changeset
   650
valueAtLine:selectionIndex put:newValue
5bd36b14723d labels; added suppressPseudoVars & dereferenceValueHolders
Claus Gittinger <cg@exept.de>
parents: 3775
diff changeset
   651
    "yes, you can do that with a context"
5bd36b14723d labels; added suppressPseudoVars & dereferenceValueHolders
Claus Gittinger <cg@exept.de>
parents: 3775
diff changeset
   652
    inspectedContext at:selectionIndex put:newValue.
200
01ce3d3636d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 188
diff changeset
   653
! !
01ce3d3636d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 188
diff changeset
   654
785
16809b8d468c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 647
diff changeset
   655
!ContextInspectorView class methodsFor:'documentation'!
200
01ce3d3636d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 188
diff changeset
   656
01ce3d3636d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 188
diff changeset
   657
version
9588
dc38e81ec660 comment/format in: #inspect:
Claus Gittinger <cg@exept.de>
parents: 9426
diff changeset
   658
    ^ '$Header: /cvs/stx/stx/libtool/ContextInspectorView.st,v 1.74 2010-10-22 10:37:50 cg Exp $'
9033
abeca4d8f0f0 no need for #asText to emphasize a string
Claus Gittinger <cg@exept.de>
parents: 8690
diff changeset
   659
!
abeca4d8f0f0 no need for #asText to emphasize a string
Claus Gittinger <cg@exept.de>
parents: 8690
diff changeset
   660
abeca4d8f0f0 no need for #asText to emphasize a string
Claus Gittinger <cg@exept.de>
parents: 8690
diff changeset
   661
version_CVS
9588
dc38e81ec660 comment/format in: #inspect:
Claus Gittinger <cg@exept.de>
parents: 9426
diff changeset
   662
    ^ '$Header: /cvs/stx/stx/libtool/ContextInspectorView.st,v 1.74 2010-10-22 10:37:50 cg Exp $'
200
01ce3d3636d5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 188
diff changeset
   663
! !