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

Side by Side Diff: src/parsing/parser.h

Issue 2611063002: [class fields] Remove a bit of dead code leftover from cleanup (Closed)
Patch Set: Created 3 years, 11 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 unified diff | Download patch
« no previous file with comments | « src/parsing/parse-info.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_PARSING_PARSER_H_ 5 #ifndef V8_PARSING_PARSER_H_
6 #define V8_PARSING_PARSER_H_ 6 #define V8_PARSING_PARSER_H_
7 7
8 #include "src/ast/ast.h" 8 #include "src/ast/ast.h"
9 #include "src/ast/scopes.h" 9 #include "src/ast/scopes.h"
10 #include "src/base/compiler-specific.h" 10 #include "src/base/compiler-specific.h"
(...skipping 575 matching lines...) Expand 10 before | Expand all | Expand 10 after
586 Expression* expression); 586 Expression* expression);
587 Expression* CloseTemplateLiteral(TemplateLiteralState* state, int start, 587 Expression* CloseTemplateLiteral(TemplateLiteralState* state, int start,
588 Expression* tag); 588 Expression* tag);
589 uint32_t ComputeTemplateLiteralHash(const TemplateLiteral* lit); 589 uint32_t ComputeTemplateLiteralHash(const TemplateLiteral* lit);
590 590
591 ZoneList<Expression*>* PrepareSpreadArguments(ZoneList<Expression*>* list); 591 ZoneList<Expression*>* PrepareSpreadArguments(ZoneList<Expression*>* list);
592 Expression* SpreadCall(Expression* function, ZoneList<Expression*>* args, 592 Expression* SpreadCall(Expression* function, ZoneList<Expression*>* args,
593 int pos); 593 int pos);
594 Expression* SpreadCallNew(Expression* function, ZoneList<Expression*>* args, 594 Expression* SpreadCallNew(Expression* function, ZoneList<Expression*>* args,
595 int pos); 595 int pos);
596 Expression* CallClassFieldInitializer(Scope* scope, Expression* this_expr);
597 Expression* RewriteSuperCall(Expression* call_expression); 596 Expression* RewriteSuperCall(Expression* call_expression);
598 597
599 void SetLanguageMode(Scope* scope, LanguageMode mode); 598 void SetLanguageMode(Scope* scope, LanguageMode mode);
600 void SetAsmModule(); 599 void SetAsmModule();
601 600
602 V8_INLINE void MarkCollectedTailCallExpressions(); 601 V8_INLINE void MarkCollectedTailCallExpressions();
603 V8_INLINE void MarkTailPosition(Expression* expression); 602 V8_INLINE void MarkTailPosition(Expression* expression);
604 603
605 // Rewrite all DestructuringAssignments in the current FunctionState. 604 // Rewrite all DestructuringAssignments in the current FunctionState.
606 V8_INLINE void RewriteDestructuringAssignments(); 605 V8_INLINE void RewriteDestructuringAssignments();
(...skipping 568 matching lines...) Expand 10 before | Expand all | Expand 10 after
1175 1174
1176 private: 1175 private:
1177 ParserTarget** variable_; 1176 ParserTarget** variable_;
1178 ParserTarget* previous_; 1177 ParserTarget* previous_;
1179 }; 1178 };
1180 1179
1181 } // namespace internal 1180 } // namespace internal
1182 } // namespace v8 1181 } // namespace v8
1183 1182
1184 #endif // V8_PARSING_PARSER_H_ 1183 #endif // V8_PARSING_PARSER_H_
OLDNEW
« no previous file with comments | « src/parsing/parse-info.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698