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

Unified Diff: src/ast.h

Issue 7003058: A collection of context-related refactoring changes. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 years, 6 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 | « src/arm/lithium-codegen-arm.cc ('k') | src/ast.cc » ('j') | src/contexts.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ast.h
diff --git a/src/ast.h b/src/ast.h
index 7ed3579edd74f2660b1be4b89c0bf40ad1bc636c..88f181cdfe234c1ce30156839c5e7fc6a947bd61 100644
--- a/src/ast.h
+++ b/src/ast.h
@@ -61,7 +61,7 @@ namespace internal {
V(BreakStatement) \
V(ReturnStatement) \
V(WithEnterStatement) \
Mads Ager (chromium) 2011/06/09 07:31:00 Do we want to call this WithContextEnterStatement
- V(WithExitStatement) \
+ V(ContextExitStatement) \
V(SwitchStatement) \
V(DoWhileStatement) \
V(WhileStatement) \
@@ -627,13 +627,13 @@ class WithEnterStatement: public Statement {
};
-class WithExitStatement: public Statement {
+class ContextExitStatement: public Statement {
public:
- WithExitStatement() { }
+ ContextExitStatement() { }
virtual bool IsInlineable() const;
- DECLARE_NODE_TYPE(WithExitStatement)
+ DECLARE_NODE_TYPE(ContextExitStatement)
};
« no previous file with comments | « src/arm/lithium-codegen-arm.cc ('k') | src/ast.cc » ('j') | src/contexts.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698