Revision: 2587 Author: [email protected] Date: Thu Jul 30 05:09:05 2009 Log: Another name change for consistency's sake. NODE_LIST -> AST_NODE_LIST.
Review URL: http://codereview.chromium.org/159633 http://code.google.com/p/v8/source/detail?r=2587 Modified: /branches/bleeding_edge/src/arm/codegen-arm.h /branches/bleeding_edge/src/ast.cc /branches/bleeding_edge/src/ast.h /branches/bleeding_edge/src/ia32/codegen-ia32.h /branches/bleeding_edge/src/prettyprinter.h /branches/bleeding_edge/src/rewriter.cc ======================================= --- /branches/bleeding_edge/src/arm/codegen-arm.h Thu Jul 30 04:53:29 2009 +++ /branches/bleeding_edge/src/arm/codegen-arm.h Thu Jul 30 05:09:05 2009 @@ -215,7 +215,7 @@ #define DEF_VISIT(type) \ void Visit##type(type* node); - NODE_LIST(DEF_VISIT) + AST_NODE_LIST(DEF_VISIT) #undef DEF_VISIT // Visit a statement and then spill the virtual frame if control flow can ======================================= --- /branches/bleeding_edge/src/ast.cc Wed Jun 24 01:01:38 2009 +++ /branches/bleeding_edge/src/ast.cc Thu Jul 30 05:09:05 2009 @@ -51,7 +51,7 @@ if (v->CheckStackOverflow()) return; \ v->Visit##type(this); \ } -NODE_LIST(DECL_ACCEPT) +AST_NODE_LIST(DECL_ACCEPT) #undef DECL_ACCEPT ======================================= --- /branches/bleeding_edge/src/ast.h Thu Jul 30 04:53:29 2009 +++ /branches/bleeding_edge/src/ast.h Thu Jul 30 05:09:05 2009 @@ -104,7 +104,7 @@ class MaterializedLiteral; #define DEF_FORWARD_DECLARATION(type) class type; -NODE_LIST(DEF_FORWARD_DECLARATION) +AST_NODE_LIST(DEF_FORWARD_DECLARATION) #undef DEF_FORWARD_DECLARATION @@ -1707,7 +1707,7 @@ // Individual nodes #define DEF_VISIT(type) \ virtual void Visit##type(type* node) = 0; - NODE_LIST(DEF_VISIT) + AST_NODE_LIST(DEF_VISIT) #undef DEF_VISIT private: ======================================= --- /branches/bleeding_edge/src/ia32/codegen-ia32.h Thu Jul 30 04:53:29 2009 +++ /branches/bleeding_edge/src/ia32/codegen-ia32.h Thu Jul 30 05:09:05 2009 @@ -359,7 +359,7 @@ #define DEF_VISIT(type) \ void Visit##type(type* node); - NODE_LIST(DEF_VISIT) + AST_NODE_LIST(DEF_VISIT) #undef DEF_VISIT // Visit a statement and then spill the virtual frame if control flow can ======================================= --- /branches/bleeding_edge/src/prettyprinter.h Thu Jul 30 04:53:29 2009 +++ /branches/bleeding_edge/src/prettyprinter.h Thu Jul 30 05:09:05 2009 @@ -52,7 +52,7 @@ // Individual nodes #define DEF_VISIT(type) \ virtual void Visit##type(type* node); - NODE_LIST(DEF_VISIT) + AST_NODE_LIST(DEF_VISIT) #undef DEF_VISIT private: @@ -87,7 +87,7 @@ // Individual nodes #define DEF_VISIT(type) \ virtual void Visit##type(type* node); - NODE_LIST(DEF_VISIT) + AST_NODE_LIST(DEF_VISIT) #undef DEF_VISIT private: friend class IndentedScope; ======================================= --- /branches/bleeding_edge/src/rewriter.cc Thu Jul 23 05:51:49 2009 +++ /branches/bleeding_edge/src/rewriter.cc Thu Jul 30 05:09:05 2009 @@ -59,7 +59,7 @@ // Node visitors. #define DEF_VISIT(type) \ virtual void Visit##type(type* node); - NODE_LIST(DEF_VISIT) + AST_NODE_LIST(DEF_VISIT) #undef DEF_VISIT DISALLOW_COPY_AND_ASSIGN(AstOptimizer); @@ -557,7 +557,7 @@ // Node visitors. #define DEF_VISIT(type) \ virtual void Visit##type(type* node); - NODE_LIST(DEF_VISIT) + AST_NODE_LIST(DEF_VISIT) #undef DEF_VISIT }; --~--~---------~--~----~------------~-------~--~----~ v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev -~----------~----~----~----~------~----~------~--~---
