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

Unified Diff: src/ast/ast.h

Issue 2240463002: [Interpreter] Introduce InterpreterCompilationJob (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@offheap_peekhole
Patch Set: Address comments 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
« no previous file with comments | « no previous file | src/compiler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ast/ast.h
diff --git a/src/ast/ast.h b/src/ast/ast.h
index c2ff617c482662d6acf80b475f45e121a6e4e0ba..31309b73b09afa5952a3d182c01ffdacfd7ff12c 100644
--- a/src/ast/ast.h
+++ b/src/ast/ast.h
@@ -2846,7 +2846,7 @@ class EmptyParentheses final : public Expression {
// class SpecificVisitor : public AstVisitor<SpecificVisitor> { ... }
template <class Subclass>
-class AstVisitor BASE_EMBEDDED {
Michael Starzinger 2016/08/16 12:11:44 nit: Can this be kept BASE_EMBEDDED now that we no
rmcilroy 2016/08/16 12:16:10 Done.
+class AstVisitor {
public:
void Visit(AstNode* node) { impl()->Visit(node); }
« no previous file with comments | « no previous file | src/compiler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698