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

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

Issue 669733004: Fix http://dartbug.com/21335 (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 2 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
« runtime/lib/errors_patch.dart ('K') | « runtime/lib/errors_patch.dart ('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 18 matching lines...) Expand all
29 V(Super, "super") \ 29 V(Super, "super") \
30 V(Call, "call") \ 30 V(Call, "call") \
31 V(Current, "current") \ 31 V(Current, "current") \
32 V(MoveNext, "moveNext") \ 32 V(MoveNext, "moveNext") \
33 V(Value, "value") \ 33 V(Value, "value") \
34 V(ExprTemp, ":expr_temp") \ 34 V(ExprTemp, ":expr_temp") \
35 V(AnonymousClosure, "<anonymous closure>") \ 35 V(AnonymousClosure, "<anonymous closure>") \
36 V(ClosureParameter, ":closure") \ 36 V(ClosureParameter, ":closure") \
37 V(PhaseParameter, ":phase") \ 37 V(PhaseParameter, ":phase") \
38 V(TypeArgumentsParameter, ":type_arguments") \ 38 V(TypeArgumentsParameter, ":type_arguments") \
39 V(AssertionError, "AssertionError") \ 39 V(AssertionError, "_AssertionError") \
40 V(CastError, "CastError") \ 40 V(CastError, "_CastError") \
41 V(TypeError, "TypeError") \ 41 V(TypeError, "_TypeError") \
42 V(FallThroughError, "FallThroughError") \ 42 V(FallThroughError, "FallThroughError") \
43 V(AbstractClassInstantiationError, "AbstractClassInstantiationError") \ 43 V(AbstractClassInstantiationError, "AbstractClassInstantiationError") \
44 V(NoSuchMethodError, "NoSuchMethodError") \ 44 V(NoSuchMethodError, "NoSuchMethodError") \
45 V(CyclicInitializationError, "CyclicInitializationError") \ 45 V(CyclicInitializationError, "CyclicInitializationError") \
46 V(ThrowNew, "_throwNew") \ 46 V(ThrowNew, "_throwNew") \
47 V(Symbol, "Symbol") \ 47 V(Symbol, "Symbol") \
48 V(SymbolCtor, "Symbol.") \ 48 V(SymbolCtor, "Symbol.") \
49 V(List, "List") \ 49 V(List, "List") \
50 V(ListLiteralFactory, "List._fromLiteral") \ 50 V(ListLiteralFactory, "List._fromLiteral") \
51 V(ListFactory, "List.") \ 51 V(ListFactory, "List.") \
(...skipping 463 matching lines...) Expand 10 before | Expand all | Expand 10 after
515 friend class SnapshotReader; 515 friend class SnapshotReader;
516 friend class SnapshotWriter; 516 friend class SnapshotWriter;
517 friend class ApiMessageReader; 517 friend class ApiMessageReader;
518 518
519 DISALLOW_COPY_AND_ASSIGN(Symbols); 519 DISALLOW_COPY_AND_ASSIGN(Symbols);
520 }; 520 };
521 521
522 } // namespace dart 522 } // namespace dart
523 523
524 #endif // VM_SYMBOLS_H_ 524 #endif // VM_SYMBOLS_H_
OLDNEW
« runtime/lib/errors_patch.dart ('K') | « runtime/lib/errors_patch.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698