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

Side by Side Diff: src/prettyprinter.h

Issue 6685088: Merge isolates to bleeding_edge. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 9 years, 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/preparser-api.cc ('k') | src/prettyprinter.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
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); 108 StaticType* type);
109 void PrintLabelsIndented(const char* info, ZoneStringList* labels); 109 void PrintLabelsIndented(const char* info, ZoneStringList* labels);
110 110
111 void inc_indent() { indent_++; } 111 void inc_indent() { indent_++; }
112 void dec_indent() { indent_--; } 112 void dec_indent() { indent_--; }
113 113
114 static int indent_; 114 int indent_;
115 }; 115 };
116 116
117 117
118 // Forward declaration of helper classes. 118 // Forward declaration of helper classes.
119 class TagScope; 119 class TagScope;
120 class AttributesScope; 120 class AttributesScope;
121 121
122 // Build a C string containing a JSON representation of a function's 122 // Build a C string containing a JSON representation of a function's
123 // AST. The representation is based on JsonML (www.jsonml.org). 123 // AST. The representation is based on JsonML (www.jsonml.org).
124 class JsonAstBuilder: public PrettyPrinter { 124 class JsonAstBuilder: public PrettyPrinter {
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 private: 214 private:
215 JsonAstBuilder* builder_; 215 JsonAstBuilder* builder_;
216 int attribute_count_; 216 int attribute_count_;
217 }; 217 };
218 218
219 #endif // DEBUG 219 #endif // DEBUG
220 220
221 } } // namespace v8::internal 221 } } // namespace v8::internal
222 222
223 #endif // V8_PRETTYPRINTER_H_ 223 #endif // V8_PRETTYPRINTER_H_
OLDNEW
« no previous file with comments | « src/preparser-api.cc ('k') | src/prettyprinter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698