Another name change for consistency's sake. NODE_LIST -> AST_NODE_LIST.

Review URL: http://codereview.chromium.org/159633

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@2587 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent a48fd591
...@@ -215,7 +215,7 @@ class CodeGenerator: public AstVisitor { ...@@ -215,7 +215,7 @@ class CodeGenerator: public AstVisitor {
#define DEF_VISIT(type) \ #define DEF_VISIT(type) \
void Visit##type(type* node); void Visit##type(type* node);
NODE_LIST(DEF_VISIT) AST_NODE_LIST(DEF_VISIT)
#undef DEF_VISIT #undef DEF_VISIT
// Visit a statement and then spill the virtual frame if control flow can // Visit a statement and then spill the virtual frame if control flow can
......
...@@ -51,7 +51,7 @@ CallEval CallEval::sentinel_(NULL, NULL, 0); ...@@ -51,7 +51,7 @@ CallEval CallEval::sentinel_(NULL, NULL, 0);
if (v->CheckStackOverflow()) return; \ if (v->CheckStackOverflow()) return; \
v->Visit##type(this); \ v->Visit##type(this); \
} }
NODE_LIST(DECL_ACCEPT) AST_NODE_LIST(DECL_ACCEPT)
#undef DECL_ACCEPT #undef DECL_ACCEPT
......
...@@ -104,7 +104,7 @@ class TargetCollector; ...@@ -104,7 +104,7 @@ class TargetCollector;
class MaterializedLiteral; class MaterializedLiteral;
#define DEF_FORWARD_DECLARATION(type) class type; #define DEF_FORWARD_DECLARATION(type) class type;
NODE_LIST(DEF_FORWARD_DECLARATION) AST_NODE_LIST(DEF_FORWARD_DECLARATION)
#undef DEF_FORWARD_DECLARATION #undef DEF_FORWARD_DECLARATION
...@@ -1707,7 +1707,7 @@ class AstVisitor BASE_EMBEDDED { ...@@ -1707,7 +1707,7 @@ class AstVisitor BASE_EMBEDDED {
// Individual nodes // Individual nodes
#define DEF_VISIT(type) \ #define DEF_VISIT(type) \
virtual void Visit##type(type* node) = 0; virtual void Visit##type(type* node) = 0;
NODE_LIST(DEF_VISIT) AST_NODE_LIST(DEF_VISIT)
#undef DEF_VISIT #undef DEF_VISIT
private: private:
......
...@@ -359,7 +359,7 @@ class CodeGenerator: public AstVisitor { ...@@ -359,7 +359,7 @@ class CodeGenerator: public AstVisitor {
#define DEF_VISIT(type) \ #define DEF_VISIT(type) \
void Visit##type(type* node); void Visit##type(type* node);
NODE_LIST(DEF_VISIT) AST_NODE_LIST(DEF_VISIT)
#undef DEF_VISIT #undef DEF_VISIT
// Visit a statement and then spill the virtual frame if control flow can // Visit a statement and then spill the virtual frame if control flow can
......
...@@ -52,7 +52,7 @@ class PrettyPrinter: public AstVisitor { ...@@ -52,7 +52,7 @@ class PrettyPrinter: public AstVisitor {
// Individual nodes // Individual nodes
#define DEF_VISIT(type) \ #define DEF_VISIT(type) \
virtual void Visit##type(type* node); virtual void Visit##type(type* node);
NODE_LIST(DEF_VISIT) AST_NODE_LIST(DEF_VISIT)
#undef DEF_VISIT #undef DEF_VISIT
private: private:
...@@ -87,7 +87,7 @@ class AstPrinter: public PrettyPrinter { ...@@ -87,7 +87,7 @@ class AstPrinter: public PrettyPrinter {
// Individual nodes // Individual nodes
#define DEF_VISIT(type) \ #define DEF_VISIT(type) \
virtual void Visit##type(type* node); virtual void Visit##type(type* node);
NODE_LIST(DEF_VISIT) AST_NODE_LIST(DEF_VISIT)
#undef DEF_VISIT #undef DEF_VISIT
private: private:
friend class IndentedScope; friend class IndentedScope;
......
...@@ -59,7 +59,7 @@ class AstOptimizer: public AstVisitor { ...@@ -59,7 +59,7 @@ class AstOptimizer: public AstVisitor {
// Node visitors. // Node visitors.
#define DEF_VISIT(type) \ #define DEF_VISIT(type) \
virtual void Visit##type(type* node); virtual void Visit##type(type* node);
NODE_LIST(DEF_VISIT) AST_NODE_LIST(DEF_VISIT)
#undef DEF_VISIT #undef DEF_VISIT
DISALLOW_COPY_AND_ASSIGN(AstOptimizer); DISALLOW_COPY_AND_ASSIGN(AstOptimizer);
...@@ -557,7 +557,7 @@ class Processor: public AstVisitor { ...@@ -557,7 +557,7 @@ class Processor: public AstVisitor {
// Node visitors. // Node visitors.
#define DEF_VISIT(type) \ #define DEF_VISIT(type) \
virtual void Visit##type(type* node); virtual void Visit##type(type* node);
NODE_LIST(DEF_VISIT) AST_NODE_LIST(DEF_VISIT)
#undef DEF_VISIT #undef DEF_VISIT
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment