Home | History | Annotate | Download | only in src

Lines Matching defs:call

111   V(Call)                                       \
1741 class Call V8_FINAL : public Expression {
1743 DECLARE_NODE_TYPE(Call)
1776 // call. Note that it contains the null handle when the receiver is the same
1798 Call(Isolate* isolate,
1871 // language construct. Instead it is used to call a C or JS function
3167 Call* NewCall(Expression* expression,
3170 Call* call = new(zone_) Call(isolate_, expression, arguments, pos);
3171 VISIT_AND_RETURN(Call, call)
3177 CallNew* call = new(zone_) CallNew(isolate_, expression, arguments, pos);
3178 VISIT_AND_RETURN(CallNew, call)
3185 CallRuntime* call =
3187 VISIT_AND_RETURN(CallRuntime, call)