module Duktape::API::Eval

Overview

NOTE These methods are all equivalent to the Duktape peval_xxx functions because we wish to safely return from errors.

Included Modules

Direct including types

Defined in:

duktape/api/eval.cr

Instance Method Summary

Instance Method Detail

def eval(str : String) #

[View source]
def eval #

[View source]
def eval!(str : String) #

[View source]
def eval! #

[View source]
def eval_file(path : String) #

[View source]
def eval_file!(path : String) #

[View source]
def eval_file_noresult(path : String) #

[View source]
def eval_file_noresult!(path : String) #

[View source]
def eval_lstring(src : String, length : Int) #

[View source]
def eval_lstring!(src : String, length : Int) #

[View source]
def eval_lstring_noresult(src : String, length : Int) #

[View source]
def eval_lstring_noresult!(src : String, length : Int) #

[View source]
def eval_noresult #

[View source]
def eval_noresult! #

[View source]
def eval_string(src : String) #

[View source]
def eval_string!(src : String) #

[View source]
def eval_string_noresult(src : String) #

[View source]
def eval_string_noresult!(src : String) #

[View source]