Searched refs:is_wrapped (Results 1 – 11 of 11) sorted by relevance
44 bool Script::is_wrapped() const { in ACCESSORS()54 DCHECK(!is_wrapped()); in set_eval_from_shared()69 DCHECK(is_wrapped()); in wrapped_arguments()
76 inline bool is_wrapped() const;
422 DECL_BOOLEAN_ACCESSORS(is_wrapped)
152 BIT_FIELD_ACCESSORS(SharedFunctionInfo, flags, is_wrapped, in BIT_FIELD_ACCESSORS() argument
62 DCHECK_IMPLIES(is_toplevel(), !Script::cast(shared->script())->is_wrapped()); in ParseInfo()65 set_wrapped_as_function(shared->is_wrapped()); in ParseInfo()194 set_wrapped_as_function(script->is_wrapped()); in SetScriptForToplevelCompile()
2477 bool is_wrapped = function_type == FunctionLiteral::kWrapped; in ParseFunctionLiteral() local2478 DCHECK_EQ(is_wrapped, arguments_for_wrapped_function != nullptr); in ParseFunctionLiteral()2496 function_state_->next_function_is_likely_called() || is_wrapped in ParseFunctionLiteral()2612 if (!is_wrapped) Expect(Token::LPAREN, CHECK_OK); in ParseFunctionLiteral()2623 DCHECK(!is_wrapped); in ParseFunctionLiteral()3068 bool is_wrapped = function_type == FunctionLiteral::kWrapped; in ParseFunction() local3084 if (is_wrapped) { in ParseFunction()
1743 if (info->is_wrapped()) { in GetWrappedFunction()1907 if (shared->is_toplevel() || shared->is_wrapped()) { in PostInstantiation()
1947 if (is_wrapped()) { in ScriptPrint()
13532 if (shared_info->is_wrapped()) { in ToString()13545 if (shared_info->is_wrapped()) { in ToString()14033 if (!shared->is_wrapped()) return source; in GetSourceCodeHarmony()14223 shared_info->set_is_wrapped(lit->is_wrapped()); in InitFromFunctionLiteral()
2641 CHECK(shared->is_wrapped()); in CreateCodeCacheForFunction()
2254 bool is_wrapped() const { return function_type() == kWrapped; } in is_wrapped() function