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

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

Issue 10896007: Expose remaining 'errors' in an unified dart:core. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Make all implementations implement, not extend, the exposed type. Created 8 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 | 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 12 matching lines...) Expand all
23 V(Empty, "") \ 23 V(Empty, "") \
24 V(This, "this") \ 24 V(This, "this") \
25 V(HasNext, "hasNext") \ 25 V(HasNext, "hasNext") \
26 V(Next, "next") \ 26 V(Next, "next") \
27 V(Value, "value") \ 27 V(Value, "value") \
28 V(ExprTemp, ":expr_temp") \ 28 V(ExprTemp, ":expr_temp") \
29 V(AnonymousClosure, "<anonymous closure>") \ 29 V(AnonymousClosure, "<anonymous closure>") \
30 V(PhaseParameter, ":phase") \ 30 V(PhaseParameter, ":phase") \
31 V(TypeArgumentsParameter, ":type_arguments") \ 31 V(TypeArgumentsParameter, ":type_arguments") \
32 V(AssertionError, "AssertionErrorImplementation") \ 32 V(AssertionError, "AssertionErrorImplementation") \
33 V(TypeError, "TypeError") \ 33 V(TypeError, "TypeErrorImplementation") \
34 V(FallThroughError, "FallThroughError") \ 34 V(FallThroughError, "FallThroughError") \
35 V(StaticResolutionException, "StaticResolutionException") \ 35 V(StaticResolutionException, "StaticResolutionException") \
36 V(ThrowNew, "_throwNew") \ 36 V(ThrowNew, "_throwNew") \
37 V(ListLiteralFactoryClass, "_ListLiteralFactory") \ 37 V(ListLiteralFactoryClass, "_ListLiteralFactory") \
38 V(ListLiteralFactory, "List.fromLiteral") \ 38 V(ListLiteralFactory, "List.fromLiteral") \
39 V(MapLiteralFactoryClass, "_MapLiteralFactory") \ 39 V(MapLiteralFactoryClass, "_MapLiteralFactory") \
40 V(MapLiteralFactory, "Map.fromLiteral") \ 40 V(MapLiteralFactory, "Map.fromLiteral") \
41 V(ImmutableMap, "ImmutableMap") \ 41 V(ImmutableMap, "ImmutableMap") \
42 V(ImmutableMapConstructor, "ImmutableMap._create") \ 42 V(ImmutableMapConstructor, "ImmutableMap._create") \
43 V(StringBase, "StringBase") \ 43 V(StringBase, "StringBase") \
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 friend class SnapshotReader; 210 friend class SnapshotReader;
211 friend class SnapshotWriter; 211 friend class SnapshotWriter;
212 friend class ApiMessageReader; 212 friend class ApiMessageReader;
213 213
214 DISALLOW_COPY_AND_ASSIGN(Symbols); 214 DISALLOW_COPY_AND_ASSIGN(Symbols);
215 }; 215 };
216 216
217 } // namespace dart 217 } // namespace dart
218 218
219 #endif // VM_SYMBOLS_H_ 219 #endif // VM_SYMBOLS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698