| 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 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 285 V(DartCore, "dart:core") \ | 285 V(DartCore, "dart:core") \ |
| 286 V(DartCollection, "dart:collection") \ | 286 V(DartCollection, "dart:collection") \ |
| 287 V(DartConvert, "dart:convert") \ | 287 V(DartConvert, "dart:convert") \ |
| 288 V(DartInternal, "dart:_internal") \ | 288 V(DartInternal, "dart:_internal") \ |
| 289 V(DartIsolate, "dart:isolate") \ | 289 V(DartIsolate, "dart:isolate") \ |
| 290 V(DartMath, "dart:math") \ | 290 V(DartMath, "dart:math") \ |
| 291 V(DartMirrors, "dart:mirrors") \ | 291 V(DartMirrors, "dart:mirrors") \ |
| 292 V(DartTypedData, "dart:typed_data") \ | 292 V(DartTypedData, "dart:typed_data") \ |
| 293 V(DartVMService, "dart:vmservice") \ | 293 V(DartVMService, "dart:vmservice") \ |
| 294 V(DartProfiler, "dart:profiler") \ | 294 V(DartProfiler, "dart:profiler") \ |
| 295 V(DartIOLibName, "dart.io") \ |
| 295 V(_Random, "_Random") \ | 296 V(_Random, "_Random") \ |
| 296 V(_state, "_state") \ | 297 V(_state, "_state") \ |
| 297 V(_A, "_A") \ | 298 V(_A, "_A") \ |
| 298 V(_stackTrace, "_stackTrace") \ | 299 V(_stackTrace, "_stackTrace") \ |
| 299 V(_SpecialTypeMirror, "_SpecialTypeMirror") \ | 300 V(_SpecialTypeMirror, "_SpecialTypeMirror") \ |
| 300 V(_LocalClassMirror, "_LocalClassMirror") \ | 301 V(_LocalClassMirror, "_LocalClassMirror") \ |
| 301 V(_LocalFunctionTypeMirror, "_LocalFunctionTypeMirror") \ | 302 V(_LocalFunctionTypeMirror, "_LocalFunctionTypeMirror") \ |
| 302 V(_LocalLibraryMirror, "_LocalLibraryMirror") \ | 303 V(_LocalLibraryMirror, "_LocalLibraryMirror") \ |
| 303 V(_LocalLibraryDependencyMirror, "_LocalLibraryDependencyMirror") \ | 304 V(_LocalLibraryDependencyMirror, "_LocalLibraryDependencyMirror") \ |
| 304 V(_LocalCombinatorMirror, "_LocalCombinatorMirror") \ | 305 V(_LocalCombinatorMirror, "_LocalCombinatorMirror") \ |
| (...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 535 friend class SnapshotReader; | 536 friend class SnapshotReader; |
| 536 friend class SnapshotWriter; | 537 friend class SnapshotWriter; |
| 537 friend class ApiMessageReader; | 538 friend class ApiMessageReader; |
| 538 | 539 |
| 539 DISALLOW_COPY_AND_ASSIGN(Symbols); | 540 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 540 }; | 541 }; |
| 541 | 542 |
| 542 } // namespace dart | 543 } // namespace dart |
| 543 | 544 |
| 544 #endif // VM_SYMBOLS_H_ | 545 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |