eval method
Implementation
eval(String script, [String filepath = "<inline>"]) {
_arguments[0].setString(script, this);
_arguments[1].setString(filepath, this);
return _action(JS_ACTION_EVAL, 2, block: (results, length) => results[0].get(this));
}