2010-01-20 14:00:36 -05:00
|
|
|
! Copyright (C) 2008, 2010 Slava Pestov.
|
2008-06-25 04:25:08 -04:00
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
2009-05-14 23:31:29 -04:00
|
|
|
USING: parser vocabs.parser words kernel classes compiler.units lexer ;
|
2008-06-25 04:25:08 -04:00
|
|
|
IN: classes.parser
|
|
|
|
|
|
|
|
: save-class-location ( class -- )
|
|
|
|
location remember-class ;
|
|
|
|
|
2009-05-28 13:28:52 -04:00
|
|
|
: create-class-in ( string -- word )
|
2008-06-25 04:25:08 -04:00
|
|
|
current-vocab create
|
2010-02-17 08:19:57 -05:00
|
|
|
dup set-word
|
2008-06-25 04:25:08 -04:00
|
|
|
dup save-class-location
|
2010-02-17 08:19:57 -05:00
|
|
|
dup create-predicate-word save-location ;
|
2008-06-25 04:25:08 -04:00
|
|
|
|
2011-09-27 16:20:07 -04:00
|
|
|
: scan-new-class ( -- word )
|
|
|
|
scan-word-name create-class-in ;
|