Searched refs:function_literal (Results 1 - 4 of 4) sorted by relevance
/third_party/node/deps/v8/src/objects/ |
H A D | script.h | 215 FunctionLiteral* function_literal); 219 FunctionLiteral* function_literal); 223 FunctionLiteral* function_literal);
|
H A D | objects.cc | 5048 FunctionLiteral* function_literal) { in FindSharedFunctionInfo() 5049 int function_literal_id = function_literal->function_literal_id(); in FindSharedFunctionInfo() 5052 return FindWebSnapshotSharedFunctionInfo(script, isolate, function_literal); in FindSharedFunctionInfo() 5070 Handle<Script> script, Isolate* isolate, FunctionLiteral* function_literal); 5073 FunctionLiteral* function_literal); 5077 FunctionLiteral* function_literal) { in FindWebSnapshotSharedFunctionInfo() 5087 handle(Smi::FromInt(function_literal->start_position()), isolate)); in FindWebSnapshotSharedFunctionInfo() 5099 function_literal->set_function_literal_id(index); in FindWebSnapshotSharedFunctionInfo() 5103 DCHECK_EQ(shared.StartPosition(), function_literal->start_position()); in FindWebSnapshotSharedFunctionInfo() 5104 DCHECK_EQ(shared.EndPosition(), function_literal in FindWebSnapshotSharedFunctionInfo() 5046 FindSharedFunctionInfo( Handle<Script> script, IsolateT* isolate, FunctionLiteral* function_literal) FindSharedFunctionInfo() argument 5075 FindWebSnapshotSharedFunctionInfo( Handle<Script> script, Isolate* isolate, FunctionLiteral* function_literal) FindWebSnapshotSharedFunctionInfo() argument 5139 FindWebSnapshotSharedFunctionInfo( Handle<Script> script, LocalIsolate* isolate, FunctionLiteral* function_literal) FindWebSnapshotSharedFunctionInfo() argument [all...] |
/third_party/node/deps/v8/src/parsing/ |
H A D | parser.cc | 83 FunctionLiteral* function_literal = factory()->NewFunctionLiteral( in DefaultConstructor() local 88 return function_literal; in DefaultConstructor() 764 FunctionLiteral* function_literal = in ParseWrapped() local 771 factory()->NewReturnStatement(function_literal, kNoSourcePosition); in ParseWrapped() 2807 FunctionLiteral* function_literal = factory()->NewFunctionLiteral( in ParseFunctionLiteral() local 2812 function_literal->set_function_token_position(function_token_pos); in ParseFunctionLiteral() 2813 function_literal->set_suspend_count(suspend_count); in ParseFunctionLiteral() 2815 RecordFunctionLiteralSourceRange(function_literal); in ParseFunctionLiteral() 2818 function_literal->set_should_parallel_compile(); in ParseFunctionLiteral() 2822 fni_.AddFunction(function_literal); in ParseFunctionLiteral() 3669 Expression* function_literal = factory()->NewStringLiteral( CheckCallable() local [all...] |
H A D | parser-base.h | 4639 FunctionLiteralT function_literal = factory()->NewFunctionLiteral( in ParseArrowFunctionLiteral() local 4648 function_literal->set_suspend_count(suspend_count); in ParseArrowFunctionLiteral() 4649 function_literal->set_function_token_position( in ParseArrowFunctionLiteral() 4652 impl()->RecordFunctionLiteralSourceRange(function_literal); in ParseArrowFunctionLiteral() 4653 impl()->AddFunctionForNameInference(function_literal); in ParseArrowFunctionLiteral() 4666 return function_literal; in ParseArrowFunctionLiteral()
|
Completed in 36 milliseconds