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

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

Issue 11189141: Move ListImplementation from coreimpl to core, as a private member. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Reintroduced type. 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') | 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/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(TypeArgumentsParameter, ":type_arguments") \ 35 V(TypeArgumentsParameter, ":type_arguments") \
36 V(AssertionError, "AssertionErrorImplementation") \ 36 V(AssertionError, "AssertionErrorImplementation") \
37 V(TypeError, "TypeErrorImplementation") \ 37 V(TypeError, "TypeErrorImplementation") \
38 V(FallThroughError, "FallThroughErrorImplementation") \ 38 V(FallThroughError, "FallThroughErrorImplementation") \
39 V(AbstractClassInstantiationError, \ 39 V(AbstractClassInstantiationError, \
40 "AbstractClassInstantiationErrorImplementation") \ 40 "AbstractClassInstantiationErrorImplementation") \
41 V(NoSuchMethodError, "NoSuchMethodErrorImplementation") \ 41 V(NoSuchMethodError, "NoSuchMethodErrorImplementation") \
42 V(ThrowNew, "_throwNew") \ 42 V(ThrowNew, "_throwNew") \
43 V(ListLiteralFactoryClass, "_ListLiteralFactory") \ 43 V(ListLiteralFactoryClass, "_ListLiteralFactory") \
44 V(ListLiteralFactory, "List.fromLiteral") \ 44 V(ListLiteralFactory, "List.fromLiteral") \
45 V(ListImplementation, "ListImplementation") \ 45 V(ListImplementation, "_ListImpl") \
46 V(ListFactory, "List.") \ 46 V(ListFactory, "List.") \
47 V(MapLiteralFactoryClass, "_MapLiteralFactory") \ 47 V(MapLiteralFactoryClass, "_MapLiteralFactory") \
48 V(MapLiteralFactory, "Map.fromLiteral") \ 48 V(MapLiteralFactory, "Map.fromLiteral") \
49 V(ImmutableMap, "ImmutableMap") \ 49 V(ImmutableMap, "ImmutableMap") \
50 V(ImmutableMapConstructor, "ImmutableMap._create") \ 50 V(ImmutableMapConstructor, "ImmutableMap._create") \
51 V(StringBase, "_StringBase") \ 51 V(StringBase, "_StringBase") \
52 V(Interpolate, "_interpolate") \ 52 V(Interpolate, "_interpolate") \
53 V(GetIterator, "iterator") \ 53 V(GetIterator, "iterator") \
54 V(NoSuchMethod, "noSuchMethod") \ 54 V(NoSuchMethod, "noSuchMethod") \
55 V(SavedArgDescVarPrefix, ":saved_args_desc_var") \ 55 V(SavedArgDescVarPrefix, ":saved_args_desc_var") \
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 friend class SnapshotReader; 224 friend class SnapshotReader;
225 friend class SnapshotWriter; 225 friend class SnapshotWriter;
226 friend class ApiMessageReader; 226 friend class ApiMessageReader;
227 227
228 DISALLOW_COPY_AND_ASSIGN(Symbols); 228 DISALLOW_COPY_AND_ASSIGN(Symbols);
229 }; 229 };
230 230
231 } // namespace dart 231 } // namespace dart
232 232
233 #endif // VM_SYMBOLS_H_ 233 #endif // VM_SYMBOLS_H_
OLDNEW
« no previous file with comments | « runtime/vm/parser.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698