| 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 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 244 V(PrivateGetterPrefix, "get:_") \ | 244 V(PrivateGetterPrefix, "get:_") \ |
| 245 V(PrivateSetterPrefix, "set:_") \ | 245 V(PrivateSetterPrefix, "set:_") \ |
| 246 V(_New, "_new") \ | 246 V(_New, "_new") \ |
| 247 V(DartScheme, "dart:") \ | 247 V(DartScheme, "dart:") \ |
| 248 V(DartSchemePrivate, "dart:_") \ | 248 V(DartSchemePrivate, "dart:_") \ |
| 249 V(DartNativeWrappers, "dart:nativewrappers") \ | 249 V(DartNativeWrappers, "dart:nativewrappers") \ |
| 250 V(DartAsync, "dart:async") \ | 250 V(DartAsync, "dart:async") \ |
| 251 V(DartCore, "dart:core") \ | 251 V(DartCore, "dart:core") \ |
| 252 V(DartCollection, "dart:collection") \ | 252 V(DartCollection, "dart:collection") \ |
| 253 V(DartCollectionDev, "dart:_collection-dev") \ | 253 V(DartCollectionDev, "dart:_collection-dev") \ |
| 254 V(DartCrypto, "dart:crypto") \ | |
| 255 V(DartIsolate, "dart:isolate") \ | 254 V(DartIsolate, "dart:isolate") \ |
| 256 V(DartJson, "dart:json") \ | 255 V(DartJson, "dart:json") \ |
| 257 V(DartMath, "dart:math") \ | 256 V(DartMath, "dart:math") \ |
| 258 V(DartMirrors, "dart:mirrors") \ | 257 V(DartMirrors, "dart:mirrors") \ |
| 259 V(DartTypedData, "dart:typed_data") \ | 258 V(DartTypedData, "dart:typed_data") \ |
| 260 V(DartUtf, "dart:utf") \ | 259 V(DartUtf, "dart:utf") \ |
| 261 V(_Random, "_Random") \ | 260 V(_Random, "_Random") \ |
| 262 V(_state, "_state") \ | 261 V(_state, "_state") \ |
| 263 V(_A, "_A") \ | 262 V(_A, "_A") \ |
| 264 | 263 |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 456 friend class SnapshotReader; | 455 friend class SnapshotReader; |
| 457 friend class SnapshotWriter; | 456 friend class SnapshotWriter; |
| 458 friend class ApiMessageReader; | 457 friend class ApiMessageReader; |
| 459 | 458 |
| 460 DISALLOW_COPY_AND_ASSIGN(Symbols); | 459 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 461 }; | 460 }; |
| 462 | 461 |
| 463 } // namespace dart | 462 } // namespace dart |
| 464 | 463 |
| 465 #endif // VM_SYMBOLS_H_ | 464 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |