Fixing bug in see caused by incorrect import
parent
3ad5ca4636
commit
766896f01c
|
@ -10,6 +10,7 @@ prettyprint.sections sequences sets sorting strings summary words
|
||||||
words.symbol words.constant words.alias vocabs slots ;
|
words.symbol words.constant words.alias vocabs slots ;
|
||||||
FROM: namespaces => set ;
|
FROM: namespaces => set ;
|
||||||
FROM: classes => members ;
|
FROM: classes => members ;
|
||||||
|
RENAME: members sets => set-members
|
||||||
IN: see
|
IN: see
|
||||||
|
|
||||||
GENERIC: synopsis* ( defspec -- )
|
GENERIC: synopsis* ( defspec -- )
|
||||||
|
@ -239,7 +240,7 @@ PRIVATE>
|
||||||
dup class? [ dup seeing-implementors % ] when
|
dup class? [ dup seeing-implementors % ] when
|
||||||
dup generic? [ dup seeing-methods % ] when
|
dup generic? [ dup seeing-methods % ] when
|
||||||
drop
|
drop
|
||||||
] { } make members ;
|
] { } make set-members ;
|
||||||
|
|
||||||
: see-methods ( word -- )
|
: see-methods ( word -- )
|
||||||
methods see-all nl ;
|
methods see-all nl ;
|
||||||
|
|
Loading…
Reference in New Issue