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

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

Issue 11417051: Make List an abstract class. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebase Created 8 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
« no previous file with comments | « runtime/vm/parser.cc ('k') | sdk/lib/_internal/compiler/implementation/lib/core_patch.dart » ('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 24 matching lines...) Expand all
35 V(ClosureParameter, ":closure") \ 35 V(ClosureParameter, ":closure") \
36 V(PhaseParameter, ":phase") \ 36 V(PhaseParameter, ":phase") \
37 V(TypeArgumentsParameter, ":type_arguments") \ 37 V(TypeArgumentsParameter, ":type_arguments") \
38 V(AssertionError, "AssertionErrorImplementation") \ 38 V(AssertionError, "AssertionErrorImplementation") \
39 V(TypeError, "TypeErrorImplementation") \ 39 V(TypeError, "TypeErrorImplementation") \
40 V(FallThroughError, "FallThroughErrorImplementation") \ 40 V(FallThroughError, "FallThroughErrorImplementation") \
41 V(AbstractClassInstantiationError, \ 41 V(AbstractClassInstantiationError, \
42 "AbstractClassInstantiationErrorImplementation") \ 42 "AbstractClassInstantiationErrorImplementation") \
43 V(NoSuchMethodError, "NoSuchMethodErrorImplementation") \ 43 V(NoSuchMethodError, "NoSuchMethodErrorImplementation") \
44 V(ThrowNew, "_throwNew") \ 44 V(ThrowNew, "_throwNew") \
45 V(List, "List") \
45 V(ListLiteralFactory, "List._fromLiteral") \ 46 V(ListLiteralFactory, "List._fromLiteral") \
46 V(ListImplementation, "_ListImpl") \
47 V(ListFactory, "List.") \ 47 V(ListFactory, "List.") \
48 V(MapImplementation, "_HashMapImpl") \ 48 V(MapImplementation, "_HashMapImpl") \
49 V(MapLiteralFactory, "Map._fromLiteral") \ 49 V(MapLiteralFactory, "Map._fromLiteral") \
50 V(ImmutableMap, "ImmutableMap") \ 50 V(ImmutableMap, "ImmutableMap") \
51 V(ImmutableMapConstructor, "ImmutableMap._create") \ 51 V(ImmutableMapConstructor, "ImmutableMap._create") \
52 V(StringBase, "_StringBase") \ 52 V(StringBase, "_StringBase") \
53 V(Interpolate, "_interpolate") \ 53 V(Interpolate, "_interpolate") \
54 V(GetIterator, "iterator") \ 54 V(GetIterator, "iterator") \
55 V(NoSuchMethod, "noSuchMethod") \ 55 V(NoSuchMethod, "noSuchMethod") \
56 V(SavedArgDescVarPrefix, ":saved_args_desc_var") \ 56 V(SavedArgDescVarPrefix, ":saved_args_desc_var") \
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 friend class SnapshotReader; 232 friend class SnapshotReader;
233 friend class SnapshotWriter; 233 friend class SnapshotWriter;
234 friend class ApiMessageReader; 234 friend class ApiMessageReader;
235 235
236 DISALLOW_COPY_AND_ASSIGN(Symbols); 236 DISALLOW_COPY_AND_ASSIGN(Symbols);
237 }; 237 };
238 238
239 } // namespace dart 239 } // namespace dart
240 240
241 #endif // VM_SYMBOLS_H_ 241 #endif // VM_SYMBOLS_H_
OLDNEW
« no previous file with comments | « runtime/vm/parser.cc ('k') | sdk/lib/_internal/compiler/implementation/lib/core_patch.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698