OLD | NEW |
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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 V(LanguageError, "LanguageError") \ | 94 V(LanguageError, "LanguageError") \ |
95 V(UnhandledException, "UnhandledException") \ | 95 V(UnhandledException, "UnhandledException") \ |
96 V(UnwindError, "UnwindError") \ | 96 V(UnwindError, "UnwindError") \ |
97 V(IntegerImplementation, "_IntegerImplementation") \ | 97 V(IntegerImplementation, "_IntegerImplementation") \ |
98 V(Number, "num") \ | 98 V(Number, "num") \ |
99 V(Smi, "_Smi") \ | 99 V(Smi, "_Smi") \ |
100 V(Mint, "_Mint") \ | 100 V(Mint, "_Mint") \ |
101 V(Bigint, "_Bigint") \ | 101 V(Bigint, "_Bigint") \ |
102 V(Double, "_Double") \ | 102 V(Double, "_Double") \ |
103 V(Bool, "bool") \ | 103 V(Bool, "bool") \ |
104 V(ObjectArray, "ObjectArray") \ | 104 V(ObjectArray, "_ObjectArray") \ |
105 V(GrowableObjectArray, "GrowableObjectArray") \ | 105 V(GrowableObjectArray, "_GrowableObjectArray") \ |
106 V(ImmutableArray, "ImmutableArray") \ | 106 V(ImmutableArray, "_ImmutableArray") \ |
107 V(OneByteString, "OneByteString") \ | 107 V(OneByteString, "OneByteString") \ |
108 V(TwoByteString, "TwoByteString") \ | 108 V(TwoByteString, "TwoByteString") \ |
109 V(FourByteString, "FourByteString") \ | 109 V(FourByteString, "FourByteString") \ |
110 V(ExternalOneByteString, "ExternalOneByteString") \ | 110 V(ExternalOneByteString, "ExternalOneByteString") \ |
111 V(ExternalTwoByteString, "ExternalTwoByteString") \ | 111 V(ExternalTwoByteString, "ExternalTwoByteString") \ |
112 V(ExternalFourByteString, "ExternalFourByteString") \ | 112 V(ExternalFourByteString, "ExternalFourByteString") \ |
113 V(Stacktrace, "Stacktrace") \ | 113 V(Stacktrace, "Stacktrace") \ |
114 V(JSSyntaxRegExp, "JSSyntaxRegExp") \ | 114 V(JSSyntaxRegExp, "JSSyntaxRegExp") \ |
115 V(Object, "Object") \ | 115 V(Object, "Object") \ |
116 V(_Int8Array, "_Int8Array") \ | 116 V(_Int8Array, "_Int8Array") \ |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
221 friend class SnapshotReader; | 221 friend class SnapshotReader; |
222 friend class SnapshotWriter; | 222 friend class SnapshotWriter; |
223 friend class ApiMessageReader; | 223 friend class ApiMessageReader; |
224 | 224 |
225 DISALLOW_COPY_AND_ASSIGN(Symbols); | 225 DISALLOW_COPY_AND_ASSIGN(Symbols); |
226 }; | 226 }; |
227 | 227 |
228 } // namespace dart | 228 } // namespace dart |
229 | 229 |
230 #endif // VM_SYMBOLS_H_ | 230 #endif // VM_SYMBOLS_H_ |
OLD | NEW |