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

Side by Side Diff: vm/symbols.h

Issue 10918213: - Move double and int implementations into dart:core and make them private. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
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 | « vm/object.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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 V(ExceptionHandlers, "ExceptionHandlers") \ 86 V(ExceptionHandlers, "ExceptionHandlers") \
87 V(DeoptInfo, "DeoptInfo") \ 87 V(DeoptInfo, "DeoptInfo") \
88 V(Context, "Context") \ 88 V(Context, "Context") \
89 V(ContextScope, "ContextScope") \ 89 V(ContextScope, "ContextScope") \
90 V(ICData, "ICData") \ 90 V(ICData, "ICData") \
91 V(SubtypeTestCache, "SubtypeTestCache") \ 91 V(SubtypeTestCache, "SubtypeTestCache") \
92 V(ApiError, "ApiError") \ 92 V(ApiError, "ApiError") \
93 V(LanguageError, "LanguageError") \ 93 V(LanguageError, "LanguageError") \
94 V(UnhandledException, "UnhandledException") \ 94 V(UnhandledException, "UnhandledException") \
95 V(UnwindError, "UnwindError") \ 95 V(UnwindError, "UnwindError") \
96 V(IntegerImplementation, "IntegerImplementation") \ 96 V(IntegerImplementation, "_IntegerImplementation") \
97 V(Number, "num") \ 97 V(Number, "num") \
98 V(Smi, "Smi") \ 98 V(Smi, "_Smi") \
99 V(Mint, "Mint") \ 99 V(Mint, "_Mint") \
100 V(Bigint, "Bigint") \ 100 V(Bigint, "_Bigint") \
101 V(Double, "Double") \ 101 V(Double, "_Double") \
102 V(Bool, "bool") \ 102 V(Bool, "bool") \
103 V(ObjectArray, "ObjectArray") \ 103 V(ObjectArray, "ObjectArray") \
104 V(GrowableObjectArray, "GrowableObjectArray") \ 104 V(GrowableObjectArray, "GrowableObjectArray") \
105 V(ImmutableArray, "ImmutableArray") \ 105 V(ImmutableArray, "ImmutableArray") \
106 V(OneByteString, "OneByteString") \ 106 V(OneByteString, "OneByteString") \
107 V(TwoByteString, "TwoByteString") \ 107 V(TwoByteString, "TwoByteString") \
108 V(FourByteString, "FourByteString") \ 108 V(FourByteString, "FourByteString") \
109 V(ExternalOneByteString, "ExternalOneByteString") \ 109 V(ExternalOneByteString, "ExternalOneByteString") \
110 V(ExternalTwoByteString, "ExternalTwoByteString") \ 110 V(ExternalTwoByteString, "ExternalTwoByteString") \
111 V(ExternalFourByteString, "ExternalFourByteString") \ 111 V(ExternalFourByteString, "ExternalFourByteString") \
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 friend class SnapshotReader; 220 friend class SnapshotReader;
221 friend class SnapshotWriter; 221 friend class SnapshotWriter;
222 friend class ApiMessageReader; 222 friend class ApiMessageReader;
223 223
224 DISALLOW_COPY_AND_ASSIGN(Symbols); 224 DISALLOW_COPY_AND_ASSIGN(Symbols);
225 }; 225 };
226 226
227 } // namespace dart 227 } // namespace dart
228 228
229 #endif // VM_SYMBOLS_H_ 229 #endif // VM_SYMBOLS_H_
OLDNEW
« no previous file with comments | « vm/object.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698