2009-09-20 17:48:17 -04:00
|
|
|
! Copyright (C) 2009 Slava Pestov.
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
2009-09-23 21:22:47 -04:00
|
|
|
USING: compiler.units continuations fry kernel vocabs vocabs.parser ;
|
2009-09-20 17:48:17 -04:00
|
|
|
IN: vocabs.generated
|
|
|
|
|
|
|
|
: generate-vocab ( vocab-name quot -- vocab )
|
2011-10-24 06:37:47 -04:00
|
|
|
[ dup lookup-vocab [ ] ] dip '[
|
2009-09-20 17:48:17 -04:00
|
|
|
[
|
|
|
|
[
|
2009-09-23 21:22:47 -04:00
|
|
|
[ _ with-current-vocab ] [ ] [ forget-vocab ] cleanup
|
2009-09-20 17:48:17 -04:00
|
|
|
] with-compilation-unit
|
|
|
|
] keep
|
|
|
|
] ?if ; inline
|