module Duktape::API::Compile
Included Modules
Direct including types
Defined in:
duktape/api/compile.crInstance Method Summary
- #compile(str : String)
-
#compile
NOTE These methods are all equivalent to the Duktape
pcompile_xxx
functions because we wish to safely return from errors. - #compile!(str : String)
- #compile!
- #compile_file(str : String)
- #compile_file!(str : String)
- #compile_lstring(src : String, length : Int32)
- #compile_lstring!(src : String, length : Int32)
- #compile_lstring_filename(src : String, length : Int32)
- #compile_lstring_filename!(src : String, length : Int32)
- #compile_string(src : String)
- #compile_string!(src : String)
- #compile_string_filename(src : String)
- #compile_string_filename!(src : String)
- #dump_function
- #load_function
Instance Method Detail
def compile
#
NOTE These methods are all equivalent to the Duktape
pcompile_xxx
functions because we wish to safely return
from errors.