Home | History | Annotate | Download | only in src

Lines Matching defs:CallRuntime

113   V(CallRuntime)                                \
1814 // The CallRuntime class does not represent any official JavaScript
1818 class CallRuntime: public Expression {
1820 DECLARE_NODE_TYPE(CallRuntime)
1830 CallRuntime(Isolate* isolate,
3108 CallRuntime* NewCallRuntime(Handle<String> name,
3111 CallRuntime* call =
3112 new(zone_) CallRuntime(isolate_, name, function, arguments);
3113 VISIT_AND_RETURN(CallRuntime, call)