OLD | NEW |
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 16 matching lines...) Expand all Loading... |
27 | 27 |
28 #ifndef V8_PRETTYPRINTER_H_ | 28 #ifndef V8_PRETTYPRINTER_H_ |
29 #define V8_PRETTYPRINTER_H_ | 29 #define V8_PRETTYPRINTER_H_ |
30 | 30 |
31 #include "ast.h" | 31 #include "ast.h" |
32 | 32 |
33 namespace v8 { namespace internal { | 33 namespace v8 { namespace internal { |
34 | 34 |
35 #ifdef DEBUG | 35 #ifdef DEBUG |
36 | 36 |
37 class PrettyPrinter: public Visitor { | 37 class PrettyPrinter: public AstVisitor { |
38 public: | 38 public: |
39 PrettyPrinter(); | 39 PrettyPrinter(); |
40 virtual ~PrettyPrinter(); | 40 virtual ~PrettyPrinter(); |
41 | 41 |
42 // The following routines print a node into a string. | 42 // The following routines print a node into a string. |
43 // The result string is alive as long as the PrettyPrinter is alive. | 43 // The result string is alive as long as the PrettyPrinter is alive. |
44 const char* Print(Node* node); | 44 const char* Print(Node* node); |
45 const char* PrintExpression(FunctionLiteral* program); | 45 const char* PrintExpression(FunctionLiteral* program); |
46 const char* PrintProgram(FunctionLiteral* program); | 46 const char* PrintProgram(FunctionLiteral* program); |
47 | 47 |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 void dec_indent() { indent_--; } | 109 void dec_indent() { indent_--; } |
110 | 110 |
111 static int indent_; | 111 static int indent_; |
112 }; | 112 }; |
113 | 113 |
114 #endif // DEBUG | 114 #endif // DEBUG |
115 | 115 |
116 } } // namespace v8::internal | 116 } } // namespace v8::internal |
117 | 117 |
118 #endif // V8_PRETTYPRINTER_H_ | 118 #endif // V8_PRETTYPRINTER_H_ |
OLD | NEW |