Searched refs:function_state_ (Results 1 – 4 of 4) sorted by relevance
| /third_party/node/deps/v8/src/parsing/ |
| D | preparser.cc | 84 FunctionState top_scope(&function_state_, &scope_, scope); in PreParseProgram() 126 DCHECK_NULL(function_state_); in PreParseFunction() 128 FunctionState function_state(&function_state_, &scope_, function_scope); in PreParseFunction() 292 skippable_function = !function_state_->next_function_is_likely_called() && in ParseFunctionLiteral() 298 FunctionState function_state(&function_state_, &scope_, function_scope); in ParseFunctionLiteral()
|
| D | parser-base.h | 253 function_state_(nullptr), in ParserBase() 293 return function_state_->loop_nesting_depth(); in loop_nesting_depth() 367 : stack_(parser->function_state_->target_stack_address()), in Target() 402 Target* target_stack() { return *function_state_->target_stack_address(); } in target_stack() 491 : function_state_(function_state) { in LoopScope() 492 function_state_->loop_nesting_depth_++; in LoopScope() 495 ~LoopScope() { function_state_->loop_nesting_depth_--; } in ~LoopScope() 498 FunctionState* function_state_; 824 function_state_->RecordFunctionOrEvalCall(); 1056 return IsGeneratorFunction(function_state_->kind()); in is_generator() [all …]
|
| D | parser.cc | 55 FunctionState function_state(&function_state_, &scope_, function_scope); in DefaultConstructor() 602 FunctionState function_state(&function_state_, &scope_, scope); in DoParseProgram() 756 FunctionState function_state(&function_state_, &scope_, outer_scope); in ParseWrapped() 964 FunctionState function_state(&function_state_, &scope_, outer_function); in DoParseFunction() 1105 FunctionState function_state(&function_state_, &scope_, nearest_decl_scope); in ParseClassForInstanceMemberInitialization() 1922 if (IsDerivedConstructor(function_state_->kind())) { in RewriteReturn() 2128 function_state_->scope()->generator_object_var())); in ParseAndRewriteAsyncGeneratorFunctionBody() 2149 function_state_->scope()->generator_object_var()); in ParseAndRewriteAsyncGeneratorFunctionBody() 2607 function_state_->scope()->DeclareGeneratorObjectVar( in PrepareGeneratorVariables() 2645 function_state_->next_function_is_likely_called() || is_wrapped in ParseFunctionLiteral() [all …]
|
| D | preparser.h | 1257 FunctionState function_state(&function_state_, &scope_, function_scope);
|