| 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 RUNTIME_VM_SYMBOLS_H_ | 5 #ifndef RUNTIME_VM_SYMBOLS_H_ |
| 6 #define RUNTIME_VM_SYMBOLS_H_ | 6 #define RUNTIME_VM_SYMBOLS_H_ |
| 7 | 7 |
| 8 #include "vm/growable_array.h" | 8 #include "vm/growable_array.h" |
| 9 #include "vm/object.h" | 9 #include "vm/object.h" |
| 10 #include "vm/snapshot_ids.h" | 10 #include "vm/snapshot_ids.h" |
| (...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 349 V(_simpleInstanceOfFalse, "_simpleInstanceOfFalse") \ | 349 V(_simpleInstanceOfFalse, "_simpleInstanceOfFalse") \ |
| 350 V(_as, "_as") \ | 350 V(_as, "_as") \ |
| 351 V(GetterPrefix, "get:") \ | 351 V(GetterPrefix, "get:") \ |
| 352 V(ClosurizePrefix, "get:#") \ | 352 V(ClosurizePrefix, "get:#") \ |
| 353 V(SetterPrefix, "set:") \ | 353 V(SetterPrefix, "set:") \ |
| 354 V(InitPrefix, "init:") \ | 354 V(InitPrefix, "init:") \ |
| 355 V(Index, "index") \ | 355 V(Index, "index") \ |
| 356 V(DartScheme, "dart:") \ | 356 V(DartScheme, "dart:") \ |
| 357 V(DartSchemePrivate, "dart:_") \ | 357 V(DartSchemePrivate, "dart:_") \ |
| 358 V(DartNativeWrappers, "dart:nativewrappers") \ | 358 V(DartNativeWrappers, "dart:nativewrappers") \ |
| 359 V(DartNativeWrappersLibName, "dart.nativewrappers") \ | 359 V(DartNativeWrappersLibName, "nativewrappers") \ |
| 360 V(DartCore, "dart:core") \ | 360 V(DartCore, "dart:core") \ |
| 361 V(DartCollection, "dart:collection") \ | 361 V(DartCollection, "dart:collection") \ |
| 362 V(DartDeveloper, "dart:developer") \ | 362 V(DartDeveloper, "dart:developer") \ |
| 363 V(DartInternal, "dart:_internal") \ | 363 V(DartInternal, "dart:_internal") \ |
| 364 V(DartIsolate, "dart:isolate") \ | 364 V(DartIsolate, "dart:isolate") \ |
| 365 V(DartMirrors, "dart:mirrors") \ | 365 V(DartMirrors, "dart:mirrors") \ |
| 366 V(DartTypedData, "dart:typed_data") \ | 366 V(DartTypedData, "dart:typed_data") \ |
| 367 V(DartVMService, "dart:_vmservice") \ | 367 V(DartVMService, "dart:_vmservice") \ |
| 368 V(DartIOLibName, "dart.io") \ | 368 V(DartIOLibName, "dart.io") \ |
| 369 V(DartVMProduct, "dart.vm.product") \ | 369 V(DartVMProduct, "dart.vm.product") \ |
| (...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 688 friend class Serializer; | 688 friend class Serializer; |
| 689 friend class Deserializer; | 689 friend class Deserializer; |
| 690 friend class ApiMessageReader; | 690 friend class ApiMessageReader; |
| 691 | 691 |
| 692 DISALLOW_COPY_AND_ASSIGN(Symbols); | 692 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 693 }; | 693 }; |
| 694 | 694 |
| 695 } // namespace dart | 695 } // namespace dart |
| 696 | 696 |
| 697 #endif // RUNTIME_VM_SYMBOLS_H_ | 697 #endif // RUNTIME_VM_SYMBOLS_H_ |
| OLD | NEW |