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

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

Issue 380333002: Add VM class for Map/LinkedHashMap. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 5 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/snapshot.h ('k') | tests/corelib/hash_map2_internal_test.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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 V(_Mint, "_Mint") \ 119 V(_Mint, "_Mint") \
120 V(_Bigint, "_Bigint") \ 120 V(_Bigint, "_Bigint") \
121 V(_Double, "_Double") \ 121 V(_Double, "_Double") \
122 V(Bool, "bool") \ 122 V(Bool, "bool") \
123 V(_List, "_List") \ 123 V(_List, "_List") \
124 V(_ListFactory, "_List.") \ 124 V(_ListFactory, "_List.") \
125 V(_GrowableList, "_GrowableList") \ 125 V(_GrowableList, "_GrowableList") \
126 V(_GrowableListFactory, "_GrowableList.") \ 126 V(_GrowableListFactory, "_GrowableList.") \
127 V(_GrowableListWithData, "_GrowableList.withData") \ 127 V(_GrowableListWithData, "_GrowableList.withData") \
128 V(_ImmutableList, "_ImmutableList") \ 128 V(_ImmutableList, "_ImmutableList") \
129 V(_LinkedHashMap, "_InternalLinkedHashMap") \
129 V(_String, "String") \ 130 V(_String, "String") \
130 V(OneByteString, "_OneByteString") \ 131 V(OneByteString, "_OneByteString") \
131 V(TwoByteString, "_TwoByteString") \ 132 V(TwoByteString, "_TwoByteString") \
132 V(ExternalOneByteString, "_ExternalOneByteString") \ 133 V(ExternalOneByteString, "_ExternalOneByteString") \
133 V(ExternalTwoByteString, "_ExternalTwoByteString") \ 134 V(ExternalTwoByteString, "_ExternalTwoByteString") \
134 V(_CapabilityImpl, "_CapabilityImpl") \ 135 V(_CapabilityImpl, "_CapabilityImpl") \
135 V(_RawReceivePortImpl, "_RawReceivePortImpl") \ 136 V(_RawReceivePortImpl, "_RawReceivePortImpl") \
136 V(_SendPortImpl, "_SendPortImpl") \ 137 V(_SendPortImpl, "_SendPortImpl") \
137 V(StackTrace, "StackTrace") \ 138 V(StackTrace, "StackTrace") \
138 V(JSSyntaxRegExp, "_JSSyntaxRegExp") \ 139 V(JSSyntaxRegExp, "_JSSyntaxRegExp") \
(...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after
538 friend class SnapshotReader; 539 friend class SnapshotReader;
539 friend class SnapshotWriter; 540 friend class SnapshotWriter;
540 friend class ApiMessageReader; 541 friend class ApiMessageReader;
541 542
542 DISALLOW_COPY_AND_ASSIGN(Symbols); 543 DISALLOW_COPY_AND_ASSIGN(Symbols);
543 }; 544 };
544 545
545 } // namespace dart 546 } // namespace dart
546 547
547 #endif // VM_SYMBOLS_H_ 548 #endif // VM_SYMBOLS_H_
OLDNEW
« no previous file with comments | « runtime/vm/snapshot.h ('k') | tests/corelib/hash_map2_internal_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698