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

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

Issue 2044753002: Make compile-time errors catchable (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Address review comments Created 4 years, 3 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
« no previous file with comments | « runtime/vm/raw_object.h ('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/growable_array.h" 8 #include "vm/growable_array.h"
9 #include "vm/object.h" 9 #include "vm/object.h"
10 #include "vm/snapshot_ids.h" 10 #include "vm/snapshot_ids.h"
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 V(ImplicitClosure, "<implicit closure>") \ 62 V(ImplicitClosure, "<implicit closure>") \
63 V(ClosureParameter, ":closure") \ 63 V(ClosureParameter, ":closure") \
64 V(TypeArgumentsParameter, ":type_arguments") \ 64 V(TypeArgumentsParameter, ":type_arguments") \
65 V(AssertionError, "_AssertionError") \ 65 V(AssertionError, "_AssertionError") \
66 V(CastError, "_CastError") \ 66 V(CastError, "_CastError") \
67 V(TypeError, "_TypeError") \ 67 V(TypeError, "_TypeError") \
68 V(FallThroughError, "FallThroughError") \ 68 V(FallThroughError, "FallThroughError") \
69 V(AbstractClassInstantiationError, "AbstractClassInstantiationError") \ 69 V(AbstractClassInstantiationError, "AbstractClassInstantiationError") \
70 V(NoSuchMethodError, "NoSuchMethodError") \ 70 V(NoSuchMethodError, "NoSuchMethodError") \
71 V(CyclicInitializationError, "CyclicInitializationError") \ 71 V(CyclicInitializationError, "CyclicInitializationError") \
72 V(_CompileTimeError, "_CompileTimeError") \
72 V(ThrowNew, "_throwNew") \ 73 V(ThrowNew, "_throwNew") \
73 V(ThrowNewIfNotLoaded, "_throwNewIfNotLoaded") \ 74 V(ThrowNewIfNotLoaded, "_throwNewIfNotLoaded") \
74 V(CheckAssertion, "_checkAssertion") \ 75 V(CheckAssertion, "_checkAssertion") \
75 V(CheckConstAssertion, "_checkConstAssertion") \ 76 V(CheckConstAssertion, "_checkConstAssertion") \
76 V(Symbol, "Symbol") \ 77 V(Symbol, "Symbol") \
77 V(SymbolCtor, "Symbol.") \ 78 V(SymbolCtor, "Symbol.") \
78 V(List, "List") \ 79 V(List, "List") \
79 V(ListLiteralFactory, "List._fromLiteral") \ 80 V(ListLiteralFactory, "List._fromLiteral") \
80 V(ListFactory, "List.") \ 81 V(ListFactory, "List.") \
81 V(Map, "Map") \ 82 V(Map, "Map") \
(...skipping 604 matching lines...) Expand 10 before | Expand all | Expand 10 after
686 friend class Serializer; 687 friend class Serializer;
687 friend class Deserializer; 688 friend class Deserializer;
688 friend class ApiMessageReader; 689 friend class ApiMessageReader;
689 690
690 DISALLOW_COPY_AND_ASSIGN(Symbols); 691 DISALLOW_COPY_AND_ASSIGN(Symbols);
691 }; 692 };
692 693
693 } // namespace dart 694 } // namespace dart
694 695
695 #endif // VM_SYMBOLS_H_ 696 #endif // VM_SYMBOLS_H_
OLDNEW
« no previous file with comments | « runtime/vm/raw_object.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698