2009-03-31 22:23:09 -04:00
|
|
|
! Copyright (C) 2009 Slava Pestov.
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
2019-09-27 11:26:02 -04:00
|
|
|
USING: compiler.units io.encodings.utf8 io.files
|
|
|
|
smalltalk.compiler smalltalk.parser ;
|
2009-03-31 22:23:09 -04:00
|
|
|
IN: smalltalk.eval
|
|
|
|
|
|
|
|
: eval-smalltalk ( string -- result )
|
|
|
|
[ parse-smalltalk compile-smalltalk ] with-compilation-unit
|
2009-04-01 03:06:57 -04:00
|
|
|
call( -- result ) ;
|
|
|
|
|
|
|
|
: eval-smalltalk-file ( path -- result )
|
|
|
|
utf8 file-contents eval-smalltalk ;
|