Home | History | Annotate | Download | only in parsing

Lines Matching refs:Scope

545       PreParserIdentifier name, Scope* scope, PreParserStatementList body,
575 explicit PreParserFormalParameters(Scope* scope)
576 : FormalParametersBase(scope) {}
799 static PreParserExpression ThisExpression(Scope* scope,
805 static PreParserExpression SuperPropertyReference(Scope* scope,
811 static PreParserExpression SuperCallReference(Scope* scope,
817 static PreParserExpression NewTargetExpression(Scope* scope,
823 static PreParserExpression FunctionSentExpression(Scope* scope,
837 Scope* scope, PreParserFactory* factory) {
919 void DeclareFormalParameter(Scope* scope, PreParserIdentifier parameter,
922 scope->SetHasNonSimpleParameters();
926 void CheckConflictingVarDeclarations(Scope* scope, bool* ok) {}
1038 Scope* scope = NewScope(scope_, SCRIPT_SCOPE);
1042 // the global scope.
1044 scope = NewScope(scope, MODULE_SCOPE);
1048 FunctionState top_scope(&function_state_, &scope_, scope, kNormalFunction,
1231 return pre_parser_->function_state_->scope()->zone();
1246 Scope* inner_scope = scope_;