Home | History | Annotate | Download | only in ast

Lines Matching refs:arguments_

299   arguments_ = nullptr;
662 arguments_ = LookupLocal(ast_value_factory->arguments_string());
663 if (arguments_ == nullptr) {
667 arguments_ = Declare(zone(), ast_value_factory->arguments_string(), VAR);
668 } else if (IsLexical(arguments_)) {
671 arguments_ = nullptr;
1484 // Clear arguments_ if unused. This is used as a signal for optimization.
1485 if (arguments_ != nullptr &&
1486 !(MustAllocate(arguments_) && !has_arguments_parameter_)) {
1487 arguments_ = nullptr;
2074 if (arguments_ != nullptr) {
2084 if (MustAllocate(arguments_) && !has_arguments_parameter_) {
2093 // allocate the arguments object by nulling out arguments_.
2094 arguments_ = nullptr;