Home
last modified time | relevance | path

Searched refs:function_literal (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/v8/src/
Dpreparser.h2702 FunctionLiteralT function_literal = factory()->NewFunctionLiteral( in ParseArrowFunctionLiteral() local
2710 function_literal->set_function_token_position(start_pos); in ParseArrowFunctionLiteral()
2711 function_literal->set_ast_properties(&ast_properties); in ParseArrowFunctionLiteral()
2712 function_literal->set_dont_optimize_reason(dont_optimize_reason); in ParseArrowFunctionLiteral()
2714 if (fni_ != NULL) this->InferFunctionName(fni_, function_literal); in ParseArrowFunctionLiteral()
2716 return function_literal; in ParseArrowFunctionLiteral()
Dparser.cc3687 FunctionLiteral* function_literal = factory()->NewFunctionLiteral( in ParseFunctionLiteral() local
3692 function_literal->set_function_token_position(function_token_pos); in ParseFunctionLiteral()
3693 function_literal->set_ast_properties(&ast_properties); in ParseFunctionLiteral()
3694 function_literal->set_dont_optimize_reason(dont_optimize_reason); in ParseFunctionLiteral()
3696 if (fni_ != NULL && should_infer_name) fni_->AddFunction(function_literal); in ParseFunctionLiteral()
3697 return function_literal; in ParseFunctionLiteral()