| OLD | NEW | 
|---|
| 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 | 
| 11 //       with the distribution. | 11 //       with the distribution. | 
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 97   void PrintIndentedVisit(const char* s, AstNode* node); | 97   void PrintIndentedVisit(const char* s, AstNode* node); | 
| 98 | 98 | 
| 99   void PrintStatements(ZoneList<Statement*>* statements); | 99   void PrintStatements(ZoneList<Statement*>* statements); | 
| 100   void PrintDeclarations(ZoneList<Declaration*>* declarations); | 100   void PrintDeclarations(ZoneList<Declaration*>* declarations); | 
| 101   void PrintParameters(Scope* scope); | 101   void PrintParameters(Scope* scope); | 
| 102   void PrintArguments(ZoneList<Expression*>* arguments); | 102   void PrintArguments(ZoneList<Expression*>* arguments); | 
| 103   void PrintCaseClause(CaseClause* clause); | 103   void PrintCaseClause(CaseClause* clause); | 
| 104   void PrintLiteralIndented(const char* info, Handle<Object> value, bool quote); | 104   void PrintLiteralIndented(const char* info, Handle<Object> value, bool quote); | 
| 105   void PrintLiteralWithModeIndented(const char* info, | 105   void PrintLiteralWithModeIndented(const char* info, | 
| 106                                     Variable* var, | 106                                     Variable* var, | 
| 107                                     Handle<Object> value, | 107                                     Handle<Object> value); | 
| 108                                     StaticType* type); |  | 
| 109   void PrintLabelsIndented(const char* info, ZoneStringList* labels); | 108   void PrintLabelsIndented(const char* info, ZoneStringList* labels); | 
| 110 | 109 | 
| 111   void inc_indent() { indent_++; } | 110   void inc_indent() { indent_++; } | 
| 112   void dec_indent() { indent_--; } | 111   void dec_indent() { indent_--; } | 
| 113 | 112 | 
| 114   int indent_; | 113   int indent_; | 
| 115 }; | 114 }; | 
| 116 | 115 | 
| 117 | 116 | 
| 118 // Forward declaration of helper classes. | 117 // Forward declaration of helper classes. | 
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 214  private: | 213  private: | 
| 215   JsonAstBuilder* builder_; | 214   JsonAstBuilder* builder_; | 
| 216   int attribute_count_; | 215   int attribute_count_; | 
| 217 }; | 216 }; | 
| 218 | 217 | 
| 219 #endif  // DEBUG | 218 #endif  // DEBUG | 
| 220 | 219 | 
| 221 } }  // namespace v8::internal | 220 } }  // namespace v8::internal | 
| 222 | 221 | 
| 223 #endif  // V8_PRETTYPRINTER_H_ | 222 #endif  // V8_PRETTYPRINTER_H_ | 
| OLD | NEW | 
|---|