Chromium Code Reviews| 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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 109 V(LanguageError, "LanguageError") \ | 109 V(LanguageError, "LanguageError") \ |
| 110 V(UnhandledException, "UnhandledException") \ | 110 V(UnhandledException, "UnhandledException") \ |
| 111 V(UnwindError, "UnwindError") \ | 111 V(UnwindError, "UnwindError") \ |
| 112 V(IntegerImplementation, "_IntegerImplementation") \ | 112 V(IntegerImplementation, "_IntegerImplementation") \ |
| 113 V(Number, "num") \ | 113 V(Number, "num") \ |
| 114 V(_Smi, "_Smi") \ | 114 V(_Smi, "_Smi") \ |
| 115 V(_Mint, "_Mint") \ | 115 V(_Mint, "_Mint") \ |
| 116 V(_Bigint, "_Bigint") \ | 116 V(_Bigint, "_Bigint") \ |
| 117 V(_Double, "_Double") \ | 117 V(_Double, "_Double") \ |
| 118 V(Bool, "bool") \ | 118 V(Bool, "bool") \ |
| 119 V(ObjectArray, "_ObjectArray") \ | 119 V(_List, "_List") \ |
| 120 V(ObjectArrayFactory, "_ObjectArray.") \ | 120 V(_ListFactory, "_List.") \ |
| 121 V(GrowableObjectArray, "_GrowableObjectArray") \ | 121 V(_GrowableList, "_GrowableList") \ |
| 122 V(GrowableObjectArrayFactory, "_GrowableObjectArray.") \ | 122 V(_GrowableListFactory, "_GrowableList.") \ |
| 123 V(GrowableObjectArrayWithData, "_GrowableObjectArray.withData") \ | 123 V(_GrowableListWithData, "_GrowableList.withData") \ |
| 124 V(ImmutableArray, "_ImmutableArray") \ | 124 V(_ImmutableList, "_ImmutableList") \ |
|
srdjan
2013/10/03 00:13:31
Formatting
| |
| 125 V(OneByteString, "_OneByteString") \ | 125 V(OneByteString, "_OneByteString") \ |
| 126 V(TwoByteString, "_TwoByteString") \ | 126 V(TwoByteString, "_TwoByteString") \ |
| 127 V(ExternalOneByteString, "_ExternalOneByteString") \ | 127 V(ExternalOneByteString, "_ExternalOneByteString") \ |
| 128 V(ExternalTwoByteString, "_ExternalTwoByteString") \ | 128 V(ExternalTwoByteString, "_ExternalTwoByteString") \ |
| 129 V(StackTrace, "StackTrace") \ | 129 V(StackTrace, "StackTrace") \ |
| 130 V(JSSyntaxRegExp, "_JSSyntaxRegExp") \ | 130 V(JSSyntaxRegExp, "_JSSyntaxRegExp") \ |
| 131 V(Object, "Object") \ | 131 V(Object, "Object") \ |
| 132 V(Int, "int") \ | 132 V(Int, "int") \ |
| 133 V(Double, "double") \ | 133 V(Double, "double") \ |
| 134 V(_Float32x4, "_Float32x4") \ | 134 V(_Float32x4, "_Float32x4") \ |
| (...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 489 friend class SnapshotReader; | 489 friend class SnapshotReader; |
| 490 friend class SnapshotWriter; | 490 friend class SnapshotWriter; |
| 491 friend class ApiMessageReader; | 491 friend class ApiMessageReader; |
| 492 | 492 |
| 493 DISALLOW_COPY_AND_ASSIGN(Symbols); | 493 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 494 }; | 494 }; |
| 495 | 495 |
| 496 } // namespace dart | 496 } // namespace dart |
| 497 | 497 |
| 498 #endif // VM_SYMBOLS_H_ | 498 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |