NewInspectorView.st
changeset 39 03af455029eb
parent 32 9dfc1899e849
child 88 d6dccf1ad344
equal deleted inserted replaced
38:7b75ce74d9e1 39:03af455029eb
    10 !InspectorView class methodsFor:'documentation'!
    10 !InspectorView class methodsFor:'documentation'!
    11 
    11 
    12 examples
    12 examples
    13 
    13 
    14 "
    14 "
    15 NewInspector::InspectorView inspect:(Array new:5)
    15     open an inspector on an array
       
    16                                                                         [exBegin]
       
    17     |array|
       
    18 
       
    19     array := Array new:5.
       
    20     array at:1 put:(Array new:400).
       
    21     NewInspector::InspectorView inspect:array
       
    22                                                                         [exEnd]
    16 "
    23 "
    17 ! !
    24 ! !
    18 
    25 
    19 !InspectorView class methodsFor:'instance creation'!
    26 !InspectorView class methodsFor:'instance creation'!
    20 
    27