core: trim down some usings.
parent
1b8b366444
commit
6b1318885d
|
@ -1,31 +1,15 @@
|
||||||
! Copyright (C) 2004, 2011 Slava Pestov, Daniel Ehrenberg.
|
! Copyright (C) 2004, 2011 Slava Pestov, Daniel Ehrenberg.
|
||||||
! See http://factorcode.org/license.txt for BSD license.
|
! See http://factorcode.org/license.txt for BSD license.
|
||||||
USING: fry accessors alien alien.accessors alien.private arrays
|
USING: accessors alien arrays assocs classes
|
||||||
byte-arrays classes continuations.private effects generic
|
classes.tuple.private combinators combinators.private
|
||||||
hashtables hashtables.private io io.backend io.files
|
combinators.short-circuit effects generic.single.private kernel
|
||||||
io.files.private io.streams.c kernel kernel.private math
|
kernel.private locals.backend locals.types macros math
|
||||||
math.private math.parser.private memory memory.private
|
namespaces quotations.private sequences sequences.private
|
||||||
namespaces namespaces.private parser quotations
|
stack-checker.alien stack-checker.backend stack-checker.branches
|
||||||
quotations.private sbufs sbufs.private sequences
|
stack-checker.dependencies stack-checker.errors
|
||||||
sequences.private slots.private strings strings.private system
|
stack-checker.row-polymorphism stack-checker.state
|
||||||
threads.private classes.tuple classes.tuple.private vectors
|
stack-checker.transforms stack-checker.values
|
||||||
vectors.private words words.private definitions assocs summary
|
stack-checker.visitor words ;
|
||||||
compiler.units system.private combinators tools.memory.private
|
|
||||||
combinators.short-circuit locals locals.backend locals.types
|
|
||||||
combinators.private stack-checker.values generic.single
|
|
||||||
generic.single.private alien.libraries tools.dispatch.private
|
|
||||||
macros tools.profiler.sampling.private classes.algebra
|
|
||||||
stack-checker.alien
|
|
||||||
stack-checker.state
|
|
||||||
stack-checker.errors
|
|
||||||
stack-checker.visitor
|
|
||||||
stack-checker.backend
|
|
||||||
stack-checker.branches
|
|
||||||
stack-checker.transforms
|
|
||||||
stack-checker.dependencies
|
|
||||||
stack-checker.recursive-state
|
|
||||||
stack-checker.row-polymorphism ;
|
|
||||||
QUALIFIED-WITH: generic.single.private gsp
|
|
||||||
IN: stack-checker.known-words
|
IN: stack-checker.known-words
|
||||||
|
|
||||||
: infer-special ( word -- )
|
: infer-special ( word -- )
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
! Copyright (C) 2010 Joe Groff
|
! Copyright (C) 2010 Joe Groff
|
||||||
! See http://factorcode.org/license.txt for BSD license
|
! See http://factorcode.org/license.txt for BSD license
|
||||||
USING: accessors arrays assocs combinators
|
USING: accessors arrays assocs combinators
|
||||||
combinators.short-circuit effects fry kernel locals math
|
combinators.short-circuit effects kernel math math.order
|
||||||
math.order namespaces sequences stack-checker.errors
|
namespaces sequences stack-checker.errors stack-checker.state
|
||||||
stack-checker.state stack-checker.values ;
|
stack-checker.values ;
|
||||||
IN: stack-checker.row-polymorphism
|
IN: stack-checker.row-polymorphism
|
||||||
|
|
||||||
: with-inner-d ( quot -- inner-d )
|
: with-inner-d ( quot -- inner-d )
|
||||||
|
|
|
@ -1,9 +1,7 @@
|
||||||
! Copyright (C) 2008, 2010 Slava Pestov.
|
! Copyright (C) 2008, 2010 Slava Pestov.
|
||||||
! See http://factorcode.org/license.txt for BSD license.
|
! See http://factorcode.org/license.txt for BSD license.
|
||||||
USING: assocs arrays namespaces sequences kernel definitions
|
USING: arrays effects kernel math namespaces sequences
|
||||||
math effects accessors words fry classes.algebra
|
stack-checker.errors stack-checker.values stack-checker.visitor ;
|
||||||
compiler.units stack-checker.values stack-checker.visitor
|
|
||||||
stack-checker.errors ;
|
|
||||||
IN: stack-checker.state
|
IN: stack-checker.state
|
||||||
|
|
||||||
SYMBOL: terminated?
|
SYMBOL: terminated?
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
! Copyright (C) 2008, 2010 Slava Pestov.
|
! Copyright (C) 2008, 2010 Slava Pestov.
|
||||||
! See http://factorcode.org/license.txt for BSD license.
|
! See http://factorcode.org/license.txt for BSD license.
|
||||||
USING: kernel arrays namespaces ;
|
USING: namespaces ;
|
||||||
IN: stack-checker.visitor
|
IN: stack-checker.visitor
|
||||||
|
|
||||||
SYMBOL: stack-visitor
|
SYMBOL: stack-visitor
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
! Copyright (C) 2009 Slava Pestov.
|
! Copyright (C) 2009 Slava Pestov.
|
||||||
! See http://factorcode.org/license.txt for BSD license.
|
! See http://factorcode.org/license.txt for BSD license.
|
||||||
USING: compiler.units continuations fry kernel vocabs vocabs.parser ;
|
USING: compiler.units continuations kernel vocabs vocabs.parser ;
|
||||||
IN: vocabs.generated
|
IN: vocabs.generated
|
||||||
|
|
||||||
: generate-vocab ( vocab-name quot -- vocab )
|
: generate-vocab ( vocab-name quot -- vocab )
|
||||||
|
|
Loading…
Reference in New Issue