forked from bonzini/gst-visualgst
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMethodFinder.st
42 lines (31 loc) · 845 Bytes
/
MethodFinder.st
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
AbstractFinder subclass: MethodFinder [
| class selector |
MethodFinder class >> on: aClass with: aSelector [
<category: 'instance creation'>
^ (self new)
on: aClass with: aSelector;
yourself
]
on: aClass with: aSelector [
<category: 'accessing'>
class := aClass.
selector := aSelector
]
displayString [
<category: 'printing'>
^ class displayString, ' >> ', selector displayString
]
element [
<category: 'accessing'>
^ selector
]
updateBrowser: aGtkClassBrowserWidget [
<category: 'events'>
aGtkClassBrowserWidget
selectANamespace: class environment;
selectAClass: class asClass.
class isClass
ifTrue: [ aGtkClassBrowserWidget selectAnInstanceMethod: selector ]
ifFalse: [ aGtkClassBrowserWidget selectAClassMethod: selector ]
]
]