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 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
209 V(_ExternalFloat64Array, "_ExternalFloat64Array") \ | 209 V(_ExternalFloat64Array, "_ExternalFloat64Array") \ |
210 V(ByteData, "ByteData") \ | 210 V(ByteData, "ByteData") \ |
211 V(ByteDataDot, "ByteData.") \ | 211 V(ByteDataDot, "ByteData.") \ |
212 V(ByteDataDotview, "ByteData.view") \ | 212 V(ByteDataDotview, "ByteData.view") \ |
213 V(_ByteDataView, "_ByteDataView") \ | 213 V(_ByteDataView, "_ByteDataView") \ |
214 V(_WeakProperty, "_WeakProperty") \ | 214 V(_WeakProperty, "_WeakProperty") \ |
215 V(_MirrorReference, "_MirrorReference") \ | 215 V(_MirrorReference, "_MirrorReference") \ |
216 V(InvocationMirror, "_InvocationMirror") \ | 216 V(InvocationMirror, "_InvocationMirror") \ |
217 V(AllocateInvocationMirror, "_allocateInvocationMirror") \ | 217 V(AllocateInvocationMirror, "_allocateInvocationMirror") \ |
218 V(toString, "toString") \ | 218 V(toString, "toString") \ |
219 V(_ReceivePortImpl, "_ReceivePortImpl") \ | 219 V(_RawReceivePortImpl, "_RawReceivePortImpl") \ |
220 V(_lookupReceivePort, "_lookupReceivePort") \ | 220 V(_lookupReceivePort, "_lookupReceivePort") \ |
221 V(_handleMessage, "_handleMessage") \ | 221 V(_handleMessage, "_handleMessage") \ |
222 V(_SendPortImpl, "_SendPortImpl") \ | 222 V(_SendPortImpl, "_SendPortImpl") \ |
223 V(_create, "_create") \ | 223 V(_create, "_create") \ |
224 V(DotCreate, "._create") \ | 224 V(DotCreate, "._create") \ |
225 V(DotWithType, "._withType") \ | 225 V(DotWithType, "._withType") \ |
226 V(_id, "_id") \ | 226 V(_id, "_id") \ |
227 V(_get_or_create, "_get_or_create") \ | 227 V(_get_or_create, "_get_or_create") \ |
228 V(RangeError, "RangeError") \ | 228 V(RangeError, "RangeError") \ |
229 V(ArgumentError, "ArgumentError") \ | 229 V(ArgumentError, "ArgumentError") \ |
230 V(FormatException, "FormatException") \ | 230 V(FormatException, "FormatException") \ |
231 V(UnsupportedError, "UnsupportedError") \ | 231 V(UnsupportedError, "UnsupportedError") \ |
232 V(StackOverflowError, "StackOverflowError") \ | 232 V(StackOverflowError, "StackOverflowError") \ |
233 V(OutOfMemoryError, "OutOfMemoryError") \ | 233 V(OutOfMemoryError, "OutOfMemoryError") \ |
234 V(InternalError, "InternalError") \ | 234 V(InternalError, "InternalError") \ |
235 V(NullThrownError, "NullThrownError") \ | 235 V(NullThrownError, "NullThrownError") \ |
236 V(IsolateSpawnException, "IsolateSpawnException") \ | 236 V(IsolateSpawnException, "IsolateSpawnException") \ |
237 V(IsolateUnhandledException, "IsolateUnhandledException") \ | 237 V(IsolateUnhandledException, "_IsolateUnhandledException") \ |
238 V(JavascriptIntegerOverflowError, "_JavascriptIntegerOverflowError") \ | 238 V(JavascriptIntegerOverflowError, "_JavascriptIntegerOverflowError") \ |
239 V(MirroredCompilationError, "MirroredCompilationError") \ | 239 V(MirroredCompilationError, "MirroredCompilationError") \ |
240 V(_setupFullStackTrace, "_setupFullStackTrace") \ | 240 V(_setupFullStackTrace, "_setupFullStackTrace") \ |
241 V(BooleanExpression, "boolean expression") \ | 241 V(BooleanExpression, "boolean expression") \ |
242 V(Malformed, "malformed") \ | 242 V(Malformed, "malformed") \ |
243 V(InstanceOf, "InstanceOf") \ | 243 V(InstanceOf, "InstanceOf") \ |
244 V(MegamorphicMiss, "megamorphic_miss") \ | 244 V(MegamorphicMiss, "megamorphic_miss") \ |
245 V(CommaSpace, ", ") \ | 245 V(CommaSpace, ", ") \ |
246 V(ColonSpace, ": ") \ | 246 V(ColonSpace, ": ") \ |
247 V(RParenArrow, ") => ") \ | 247 V(RParenArrow, ") => ") \ |
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
488 friend class SnapshotReader; | 488 friend class SnapshotReader; |
489 friend class SnapshotWriter; | 489 friend class SnapshotWriter; |
490 friend class ApiMessageReader; | 490 friend class ApiMessageReader; |
491 | 491 |
492 DISALLOW_COPY_AND_ASSIGN(Symbols); | 492 DISALLOW_COPY_AND_ASSIGN(Symbols); |
493 }; | 493 }; |
494 | 494 |
495 } // namespace dart | 495 } // namespace dart |
496 | 496 |
497 #endif // VM_SYMBOLS_H_ | 497 #endif // VM_SYMBOLS_H_ |
OLD | NEW |