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

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

Issue 38563005: Throw CyclicInitializationError instead of string (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 1 month 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
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 22 matching lines...) Expand all
33 V(AnonymousClosure, "<anonymous closure>") \ 33 V(AnonymousClosure, "<anonymous closure>") \
34 V(ClosureParameter, ":closure") \ 34 V(ClosureParameter, ":closure") \
35 V(PhaseParameter, ":phase") \ 35 V(PhaseParameter, ":phase") \
36 V(TypeArgumentsParameter, ":type_arguments") \ 36 V(TypeArgumentsParameter, ":type_arguments") \
37 V(AssertionError, "AssertionError") \ 37 V(AssertionError, "AssertionError") \
38 V(CastError, "CastError") \ 38 V(CastError, "CastError") \
39 V(TypeError, "TypeError") \ 39 V(TypeError, "TypeError") \
40 V(FallThroughError, "FallThroughError") \ 40 V(FallThroughError, "FallThroughError") \
41 V(AbstractClassInstantiationError, "AbstractClassInstantiationError") \ 41 V(AbstractClassInstantiationError, "AbstractClassInstantiationError") \
42 V(NoSuchMethodError, "NoSuchMethodError") \ 42 V(NoSuchMethodError, "NoSuchMethodError") \
43 V(CyclicInitializationError, "CyclicInitializationError") \
43 V(ThrowNew, "_throwNew") \ 44 V(ThrowNew, "_throwNew") \
44 V(Symbol, "Symbol") \ 45 V(Symbol, "Symbol") \
45 V(SymbolCtor, "Symbol.") \ 46 V(SymbolCtor, "Symbol.") \
46 V(List, "List") \ 47 V(List, "List") \
47 V(ListLiteralFactory, "List._fromLiteral") \ 48 V(ListLiteralFactory, "List._fromLiteral") \
48 V(ListFactory, "List.") \ 49 V(ListFactory, "List.") \
49 V(Map, "Map") \ 50 V(Map, "Map") \
50 V(MapLiteralFactory, "Map._fromLiteral") \ 51 V(MapLiteralFactory, "Map._fromLiteral") \
51 V(ImmutableMap, "ImmutableMap") \ 52 V(ImmutableMap, "ImmutableMap") \
52 V(ImmutableMapConstructor, "ImmutableMap._create") \ 53 V(ImmutableMapConstructor, "ImmutableMap._create") \
(...skipping 435 matching lines...) Expand 10 before | Expand all | Expand 10 after
488 friend class SnapshotReader; 489 friend class SnapshotReader;
489 friend class SnapshotWriter; 490 friend class SnapshotWriter;
490 friend class ApiMessageReader; 491 friend class ApiMessageReader;
491 492
492 DISALLOW_COPY_AND_ASSIGN(Symbols); 493 DISALLOW_COPY_AND_ASSIGN(Symbols);
493 }; 494 };
494 495
495 } // namespace dart 496 } // namespace dart
496 497
497 #endif // VM_SYMBOLS_H_ 498 #endif // VM_SYMBOLS_H_
OLDNEW
« runtime/vm/parser.cc ('K') | « runtime/vm/parser.cc ('k') | tests/co19/co19-runtime.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698