Handbook
Glossary
forward-reference? ( word -- ? )
Factor handbook
»
The implementation
»
Definitions
»
Compilation units
»
Compilation units internals
Prev:
remember-class ( class loc -- )
Next:
recompile ( words -- alist )
Vocabulary
compiler
.
units
Inputs
word
an
object
Outputs
?
an
object
Definition
USING:
kernel
namespaces
sequences
sets
;
IN:
compiler.units
:
forward-reference?
( word -- ? )
dup
old-definitions
get
[
in?
]
with
any?
[
new-definitions
get
[
in?
]
with
none?
]
[
drop
f
]
if
;