| 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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 V(UnhandledException, "UnhandledException") \ | 103 V(UnhandledException, "UnhandledException") \ |
| 104 V(UnwindError, "UnwindError") \ | 104 V(UnwindError, "UnwindError") \ |
| 105 V(IntegerImplementation, "_IntegerImplementation") \ | 105 V(IntegerImplementation, "_IntegerImplementation") \ |
| 106 V(Number, "num") \ | 106 V(Number, "num") \ |
| 107 V(_Smi, "_Smi") \ | 107 V(_Smi, "_Smi") \ |
| 108 V(_Mint, "_Mint") \ | 108 V(_Mint, "_Mint") \ |
| 109 V(_Bigint, "_Bigint") \ | 109 V(_Bigint, "_Bigint") \ |
| 110 V(_Double, "_Double") \ | 110 V(_Double, "_Double") \ |
| 111 V(Bool, "bool") \ | 111 V(Bool, "bool") \ |
| 112 V(ObjectArray, "_ObjectArray") \ | 112 V(ObjectArray, "_ObjectArray") \ |
| 113 V(ObjectArrayDot, "_ObjectArray.") \ |
| 113 V(GrowableObjectArray, "_GrowableObjectArray") \ | 114 V(GrowableObjectArray, "_GrowableObjectArray") \ |
| 115 V(GrowableObjectArrayDot, "_GrowableObjectArray.") \ |
| 116 V(GrowableObjectArrayWithData, "_GrowableObjectArray.withData") \ |
| 114 V(ImmutableArray, "_ImmutableArray") \ | 117 V(ImmutableArray, "_ImmutableArray") \ |
| 115 V(OneByteString, "_OneByteString") \ | 118 V(OneByteString, "_OneByteString") \ |
| 116 V(TwoByteString, "_TwoByteString") \ | 119 V(TwoByteString, "_TwoByteString") \ |
| 117 V(ExternalOneByteString, "_ExternalOneByteString") \ | 120 V(ExternalOneByteString, "_ExternalOneByteString") \ |
| 118 V(ExternalTwoByteString, "_ExternalTwoByteString") \ | 121 V(ExternalTwoByteString, "_ExternalTwoByteString") \ |
| 119 V(StackTrace, "StackTrace") \ | 122 V(StackTrace, "StackTrace") \ |
| 120 V(JSSyntaxRegExp, "_JSSyntaxRegExp") \ | 123 V(JSSyntaxRegExp, "_JSSyntaxRegExp") \ |
| 121 V(Object, "Object") \ | 124 V(Object, "Object") \ |
| 122 V(Int, "int") \ | 125 V(Int, "int") \ |
| 123 V(Double, "double") \ | 126 V(Double, "double") \ |
| (...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 404 friend class SnapshotReader; | 407 friend class SnapshotReader; |
| 405 friend class SnapshotWriter; | 408 friend class SnapshotWriter; |
| 406 friend class ApiMessageReader; | 409 friend class ApiMessageReader; |
| 407 | 410 |
| 408 DISALLOW_COPY_AND_ASSIGN(Symbols); | 411 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 409 }; | 412 }; |
| 410 | 413 |
| 411 } // namespace dart | 414 } // namespace dart |
| 412 | 415 |
| 413 #endif // VM_SYMBOLS_H_ | 416 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |