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

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

Issue 10916039: Throw AbstractClassInstantiationError if an abstract class is instantiated (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: 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
« no previous file with comments | « runtime/vm/parser.cc ('k') | tests/co19/co19-runtime.status » ('j') | 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 15 matching lines...) Expand all
26 V(HasNext, "hasNext") \ 26 V(HasNext, "hasNext") \
27 V(Next, "next") \ 27 V(Next, "next") \
28 V(Value, "value") \ 28 V(Value, "value") \
29 V(ExprTemp, ":expr_temp") \ 29 V(ExprTemp, ":expr_temp") \
30 V(AnonymousClosure, "<anonymous closure>") \ 30 V(AnonymousClosure, "<anonymous closure>") \
31 V(PhaseParameter, ":phase") \ 31 V(PhaseParameter, ":phase") \
32 V(TypeArgumentsParameter, ":type_arguments") \ 32 V(TypeArgumentsParameter, ":type_arguments") \
33 V(AssertionError, "AssertionErrorImplementation") \ 33 V(AssertionError, "AssertionErrorImplementation") \
34 V(TypeError, "TypeErrorImplementation") \ 34 V(TypeError, "TypeErrorImplementation") \
35 V(FallThroughError, "FallThroughErrorImplementation") \ 35 V(FallThroughError, "FallThroughErrorImplementation") \
36 V(AbstractClassInstantiationError, \
37 "AbstractClassInstantiationErrorImplementation") \
36 V(StaticResolutionException, "StaticResolutionException") \ 38 V(StaticResolutionException, "StaticResolutionException") \
37 V(ThrowNew, "_throwNew") \ 39 V(ThrowNew, "_throwNew") \
38 V(ListLiteralFactoryClass, "_ListLiteralFactory") \ 40 V(ListLiteralFactoryClass, "_ListLiteralFactory") \
39 V(ListLiteralFactory, "List.fromLiteral") \ 41 V(ListLiteralFactory, "List.fromLiteral") \
40 V(MapLiteralFactoryClass, "_MapLiteralFactory") \ 42 V(MapLiteralFactoryClass, "_MapLiteralFactory") \
41 V(MapLiteralFactory, "Map.fromLiteral") \ 43 V(MapLiteralFactory, "Map.fromLiteral") \
42 V(ImmutableMap, "ImmutableMap") \ 44 V(ImmutableMap, "ImmutableMap") \
43 V(ImmutableMapConstructor, "ImmutableMap._create") \ 45 V(ImmutableMapConstructor, "ImmutableMap._create") \
44 V(StringBase, "StringBase") \ 46 V(StringBase, "StringBase") \
45 V(Interpolate, "_interpolate") \ 47 V(Interpolate, "_interpolate") \
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 friend class SnapshotReader; 217 friend class SnapshotReader;
216 friend class SnapshotWriter; 218 friend class SnapshotWriter;
217 friend class ApiMessageReader; 219 friend class ApiMessageReader;
218 220
219 DISALLOW_COPY_AND_ASSIGN(Symbols); 221 DISALLOW_COPY_AND_ASSIGN(Symbols);
220 }; 222 };
221 223
222 } // namespace dart 224 } // namespace dart
223 225
224 #endif // VM_SYMBOLS_H_ 226 #endif // VM_SYMBOLS_H_
OLDNEW
« no previous file with comments | « 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