Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(103)

Unified Diff: src/parsing/parser.h

Issue 2280033002: Move Parser::Declare to Scope. (Closed)
Patch Set: beautification Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/parsing/parser.h
diff --git a/src/parsing/parser.h b/src/parsing/parser.h
index 92ab770a9fbecc05fc0005cadf22f538abfe1d3f..a0d7a95ed668a2cd77577c9fdb64b1ed8baf0480 100644
--- a/src/parsing/parser.h
+++ b/src/parsing/parser.h
@@ -301,17 +301,6 @@ class Parser : public ParserBase<Parser> {
DoExpression* ParseDoExpression(bool* ok);
Expression* ParseYieldStarExpression(bool* ok);
- struct DeclarationDescriptor {
- enum Kind { NORMAL, PARAMETER };
- Parser* parser;
- Scope* scope;
- Scope* hoist_scope;
- VariableMode mode;
- int declaration_pos;
- int initialization_pos;
- Kind declaration_kind;
- };
-
struct DeclarationParsingResult {
struct Declaration {
Declaration(Expression* pattern, int initializer_position,

Powered by Google App Engine
This is Rietveld 408576698