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 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 327 V(DartNativeWrappersLibName, "dart.nativewrappers") \ | 327 V(DartNativeWrappersLibName, "dart.nativewrappers") \ |
| 328 V(DartCore, "dart:core") \ | 328 V(DartCore, "dart:core") \ |
| 329 V(DartCollection, "dart:collection") \ | 329 V(DartCollection, "dart:collection") \ |
| 330 V(DartInternal, "dart:_internal") \ | 330 V(DartInternal, "dart:_internal") \ |
| 331 V(DartIsolate, "dart:isolate") \ | 331 V(DartIsolate, "dart:isolate") \ |
| 332 V(DartMirrors, "dart:mirrors") \ | 332 V(DartMirrors, "dart:mirrors") \ |
| 333 V(DartTypedData, "dart:typed_data") \ | 333 V(DartTypedData, "dart:typed_data") \ |
| 334 V(DartVMService, "dart:vmservice") \ | 334 V(DartVMService, "dart:vmservice") \ |
| 335 V(DartProfiler, "dart:profiler") \ | 335 V(DartProfiler, "dart:profiler") \ |
| 336 V(DartIOLibName, "dart.io") \ | 336 V(DartIOLibName, "dart.io") \ |
| 337 V(GeneratedSourceUri, "generated:source") \ | |
|
siva
2015/04/03 18:26:57
Why not call it evaluate:source or something like
rmacnak
2015/04/03 18:37:17
sgtm
| |
| 337 V(_Random, "_Random") \ | 338 V(_Random, "_Random") \ |
| 338 V(_state, "_state") \ | 339 V(_state, "_state") \ |
| 339 V(_A, "_A") \ | 340 V(_A, "_A") \ |
| 340 V(_stackTrace, "_stackTrace") \ | 341 V(_stackTrace, "_stackTrace") \ |
| 341 V(_SpecialTypeMirror, "_SpecialTypeMirror") \ | 342 V(_SpecialTypeMirror, "_SpecialTypeMirror") \ |
| 342 V(_LocalClassMirror, "_LocalClassMirror") \ | 343 V(_LocalClassMirror, "_LocalClassMirror") \ |
| 343 V(_LocalFunctionTypeMirror, "_LocalFunctionTypeMirror") \ | 344 V(_LocalFunctionTypeMirror, "_LocalFunctionTypeMirror") \ |
| 344 V(_LocalLibraryMirror, "_LocalLibraryMirror") \ | 345 V(_LocalLibraryMirror, "_LocalLibraryMirror") \ |
| 345 V(_LocalLibraryDependencyMirror, "_LocalLibraryDependencyMirror") \ | 346 V(_LocalLibraryDependencyMirror, "_LocalLibraryDependencyMirror") \ |
| 346 V(_LocalCombinatorMirror, "_LocalCombinatorMirror") \ | 347 V(_LocalCombinatorMirror, "_LocalCombinatorMirror") \ |
| (...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 599 friend class SnapshotReader; | 600 friend class SnapshotReader; |
| 600 friend class SnapshotWriter; | 601 friend class SnapshotWriter; |
| 601 friend class ApiMessageReader; | 602 friend class ApiMessageReader; |
| 602 | 603 |
| 603 DISALLOW_COPY_AND_ASSIGN(Symbols); | 604 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 604 }; | 605 }; |
| 605 | 606 |
| 606 } // namespace dart | 607 } // namespace dart |
| 607 | 608 |
| 608 #endif // VM_SYMBOLS_H_ | 609 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |