Bug fixes for lcs.diff2html; xml.writer
[factor/jcg.git] / basis / eval / eval.factor
blob5b22fec159de78a98e73afa0ac79af7bf6003ecc
1 ! Copyright (C) 2008 Slava Pestov.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: splitting parser compiler.units kernel namespaces
4 debugger io.streams.string ;
5 IN: eval
7 : eval ( str -- )
8     [ string-lines parse-fresh ] with-compilation-unit call ;
10 : eval>string ( str -- output )
11     [
12         parser-notes off
13         [ [ eval ] keep ] try drop
14     ] with-string-writer ;