Home | History | Annotate | Download | only in ast

Lines Matching refs:arguments_

263   arguments_ = nullptr;
592 arguments_ = LookupLocal(ast_value_factory->arguments_string());
593 if (arguments_ == nullptr) {
597 arguments_ = Declare(zone(), this, ast_value_factory->arguments_string(),
599 } else if (IsLexicalVariableMode(arguments_->mode())) {
602 arguments_ = nullptr;
1329 // Clear arguments_ if unused. This is used as a signal for optimization.
1330 if (arguments_ != nullptr &&
1331 !(MustAllocate(arguments_) && !has_arguments_parameter_)) {
1332 arguments_ = nullptr;
1849 if (arguments_ != nullptr) {
1859 if (MustAllocate(arguments_) && !has_arguments_parameter_) {
1868 // allocate the arguments object by nulling out arguments_.
1869 arguments_ = nullptr;