Home | History | Annotate | Download | only in src

Lines Matching defs:zone_

2635         zone_(isolate_->zone()) { }
2647 new(zone_) VariableDeclaration(proxy, mode, scope);
2656 new(zone_) FunctionDeclaration(proxy, mode, fun, scope);
2664 new(zone_) ModuleDeclaration(proxy, module, scope);
2672 new(zone_) ImportDeclaration(proxy, module, scope);
2679 new(zone_) ExportDeclaration(proxy, scope);
2684 ModuleLiteral* module = new(zone_) ModuleLiteral(body, interface);
2689 ModuleVariable* module = new(zone_) ModuleVariable(proxy);
2694 ModulePath* module = new(zone_) ModulePath(origin, name);
2699 ModuleUrl* module = new(zone_) ModuleUrl(url);
2706 Block* block = new(zone_) Block(
2713 NodeType* stmt = new(zone_) NodeType(isolate_, labels); \
2724 ExpressionStatement* stmt = new(zone_) ExpressionStatement(expression);
2729 ContinueStatement* stmt = new(zone_) ContinueStatement(target);
2734 BreakStatement* stmt = new(zone_) BreakStatement(target);
2739 ReturnStatement* stmt = new(zone_) ReturnStatement(expression);
2745 WithStatement* stmt = new(zone_) WithStatement(expression, statement);
2752 IfStatement* stmt = new(zone_) IfStatement(
2762 TryCatchStatement* stmt = new(zone_) TryCatchStatement(
2771 new(zone_) TryFinallyStatement(index, try_block, finally_block);
2776 DebuggerStatement* stmt = new(zone_) DebuggerStatement();
2781 return new(zone_) EmptyStatement();
2785 Literal* lit = new(zone_) Literal(isolate_, handle);
2801 ObjectLiteral* lit = new(zone_) ObjectLiteral(
2810 new(zone_) ObjectLiteral::Property(is_getter, value);
2819 new(zone_) RegExpLiteral(isolate_, pattern, flags, literal_index);
2828 ArrayLiteral* lit = new(zone_) ArrayLiteral(
2834 VariableProxy* proxy = new(zone_) VariableProxy(isolate_, var);
2844 new(zone_) VariableProxy(isolate_, name, is_this, position, interface);
2849 Property* prop = new(zone_) Property(isolate_, obj, key, pos);
2856 Call* call = new(zone_) Call(isolate_, expression, arguments, pos);
2863 CallNew* call = new(zone_) CallNew(isolate_, expression, arguments, pos);
2871 new(zone_) CallRuntime(isolate_, name, function, arguments);
2879 new(zone_) UnaryOperation(isolate_, op, expression, pos);
2888 new(zone_) BinaryOperation(isolate_, op, left, right, pos);
2897 new(zone_) CountOperation(isolate_, op, is_prefix, expr, pos);
2906 new(zone_) CompareOperation(isolate_, op, left, right, pos);
2915 Conditional* cond = new(zone_) Conditional(
2926 new(zone_) Assignment(isolate_, op, target, value, pos);
2932 Throw* t = new(zone_) Throw(isolate_, exception, pos);
2949 FunctionLiteral* lit = new(zone_) FunctionLiteral(
2964 new(zone_) SharedFunctionInfoLiteral(isolate_, shared_function_info);
2969 ThisFunction* fun = new(zone_) ThisFunction(isolate_);
2977 Zone* zone_;