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

Side by Side Diff: runtime/vm/symbols.h

Issue 14097006: A patch class must be given the same name as the class it is patching, otherwise (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 8 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 | « runtime/vm/parser.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #ifndef VM_SYMBOLS_H_ 5 #ifndef VM_SYMBOLS_H_
6 #define VM_SYMBOLS_H_ 6 #define VM_SYMBOLS_H_
7 7
8 #include "vm/object.h" 8 #include "vm/object.h"
9 #include "vm/snapshot_ids.h" 9 #include "vm/snapshot_ids.h"
10 10
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 V(IsolateUnhandledException, "IsolateUnhandledException") \ 214 V(IsolateUnhandledException, "IsolateUnhandledException") \
215 V(_setupFullStackTrace, "_setupFullStackTrace") \ 215 V(_setupFullStackTrace, "_setupFullStackTrace") \
216 V(BooleanExpression, "boolean expression") \ 216 V(BooleanExpression, "boolean expression") \
217 V(Malformed, "malformed") \ 217 V(Malformed, "malformed") \
218 V(InstanceOf, "InstanceOf") \ 218 V(InstanceOf, "InstanceOf") \
219 V(MegamorphicMiss, "megamorphic_miss") \ 219 V(MegamorphicMiss, "megamorphic_miss") \
220 V(CommaSpace, ", ") \ 220 V(CommaSpace, ", ") \
221 V(ColonSpace, ": ") \ 221 V(ColonSpace, ": ") \
222 V(RParenArrow, ") => ") \ 222 V(RParenArrow, ") => ") \
223 V(SpaceExtendsSpace, " extends ") \ 223 V(SpaceExtendsSpace, " extends ") \
224 V(PatchSpace, "patch ") \
225 V(SwitchExpr, ":switch_expr") \ 224 V(SwitchExpr, ":switch_expr") \
226 V(TwoNewlines, "\n\n") \ 225 V(TwoNewlines, "\n\n") \
227 V(TwoSpaces, " ") \ 226 V(TwoSpaces, " ") \
228 V(_instanceOf, "_instanceOf") \ 227 V(_instanceOf, "_instanceOf") \
229 V(_as, "_as") \ 228 V(_as, "_as") \
230 V(PrivateGetterPrefix, "get:_") \ 229 V(PrivateGetterPrefix, "get:_") \
231 V(PrivateSetterPrefix, "set:_") \ 230 V(PrivateSetterPrefix, "set:_") \
232 V(_New, "_new") \ 231 V(_New, "_new") \
233 V(DartScheme, "dart:") \ 232 V(DartScheme, "dart:") \
234 V(DartSchemePrivate, "dart:_") \ 233 V(DartSchemePrivate, "dart:_") \
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
437 friend class SnapshotReader; 436 friend class SnapshotReader;
438 friend class SnapshotWriter; 437 friend class SnapshotWriter;
439 friend class ApiMessageReader; 438 friend class ApiMessageReader;
440 439
441 DISALLOW_COPY_AND_ASSIGN(Symbols); 440 DISALLOW_COPY_AND_ASSIGN(Symbols);
442 }; 441 };
443 442
444 } // namespace dart 443 } // namespace dart
445 444
446 #endif // VM_SYMBOLS_H_ 445 #endif // VM_SYMBOLS_H_
OLDNEW
« no previous file with comments | « runtime/vm/parser.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698