| 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 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 V(_as, "_as") \ | 272 V(_as, "_as") \ |
| 273 V(GetterPrefix, "get:") \ | 273 V(GetterPrefix, "get:") \ |
| 274 V(SetterPrefix, "set:") \ | 274 V(SetterPrefix, "set:") \ |
| 275 V(InitPrefix, "init:") \ | 275 V(InitPrefix, "init:") \ |
| 276 V(PrivateGetterPrefix, "get:_") \ | 276 V(PrivateGetterPrefix, "get:_") \ |
| 277 V(PrivateSetterPrefix, "set:_") \ | 277 V(PrivateSetterPrefix, "set:_") \ |
| 278 V(_New, "_new") \ | 278 V(_New, "_new") \ |
| 279 V(DartScheme, "dart:") \ | 279 V(DartScheme, "dart:") \ |
| 280 V(DartSchemePrivate, "dart:_") \ | 280 V(DartSchemePrivate, "dart:_") \ |
| 281 V(DartNativeWrappers, "dart:nativewrappers") \ | 281 V(DartNativeWrappers, "dart:nativewrappers") \ |
| 282 V(DartNativeWrappersLibName, "dart.nativewrappers") \ |
| 282 V(DartAsync, "dart:async") \ | 283 V(DartAsync, "dart:async") \ |
| 283 V(DartCore, "dart:core") \ | 284 V(DartCore, "dart:core") \ |
| 284 V(DartCollection, "dart:collection") \ | 285 V(DartCollection, "dart:collection") \ |
| 285 V(DartConvert, "dart:convert") \ | 286 V(DartConvert, "dart:convert") \ |
| 286 V(DartInternal, "dart:_internal") \ | 287 V(DartInternal, "dart:_internal") \ |
| 287 V(DartIsolate, "dart:isolate") \ | 288 V(DartIsolate, "dart:isolate") \ |
| 288 V(DartMath, "dart:math") \ | 289 V(DartMath, "dart:math") \ |
| 289 V(DartMirrors, "dart:mirrors") \ | 290 V(DartMirrors, "dart:mirrors") \ |
| 290 V(DartTypedData, "dart:typed_data") \ | 291 V(DartTypedData, "dart:typed_data") \ |
| 291 V(DartVMService, "dart:vmservice") \ | 292 V(DartVMService, "dart:vmservice") \ |
| (...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 529 friend class SnapshotReader; | 530 friend class SnapshotReader; |
| 530 friend class SnapshotWriter; | 531 friend class SnapshotWriter; |
| 531 friend class ApiMessageReader; | 532 friend class ApiMessageReader; |
| 532 | 533 |
| 533 DISALLOW_COPY_AND_ASSIGN(Symbols); | 534 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 534 }; | 535 }; |
| 535 | 536 |
| 536 } // namespace dart | 537 } // namespace dart |
| 537 | 538 |
| 538 #endif // VM_SYMBOLS_H_ | 539 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |