| 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 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 V(DartMath, "dart:math") \ | 266 V(DartMath, "dart:math") \ |
| 267 V(DartMirrors, "dart:mirrors") \ | 267 V(DartMirrors, "dart:mirrors") \ |
| 268 V(DartTypedData, "dart:typed_data") \ | 268 V(DartTypedData, "dart:typed_data") \ |
| 269 V(DartUtf, "dart:utf") \ | 269 V(DartUtf, "dart:utf") \ |
| 270 V(_Random, "_Random") \ | 270 V(_Random, "_Random") \ |
| 271 V(_state, "_state") \ | 271 V(_state, "_state") \ |
| 272 V(_A, "_A") \ | 272 V(_A, "_A") \ |
| 273 V(_stackTrace, "_stackTrace") \ | 273 V(_stackTrace, "_stackTrace") \ |
| 274 V(_SpecialTypeMirrorImpl, "_SpecialTypeMirrorImpl") \ | 274 V(_SpecialTypeMirrorImpl, "_SpecialTypeMirrorImpl") \ |
| 275 V(_LocalClassMirrorImpl, "_LocalClassMirrorImpl") \ | 275 V(_LocalClassMirrorImpl, "_LocalClassMirrorImpl") \ |
| 276 V(_LocalClosureTypeMirrorImpl, "_LocalClosureTypeMirrorImpl") \ |
| 276 V(_LocalFunctionTypeMirrorImpl, "_LocalFunctionTypeMirrorImpl") \ | 277 V(_LocalFunctionTypeMirrorImpl, "_LocalFunctionTypeMirrorImpl") \ |
| 277 V(_LocalLibraryMirrorImpl, "_LocalLibraryMirrorImpl") \ | 278 V(_LocalLibraryMirrorImpl, "_LocalLibraryMirrorImpl") \ |
| 278 V(_LocalMethodMirrorImpl, "_LocalMethodMirrorImpl") \ | 279 V(_LocalMethodMirrorImpl, "_LocalMethodMirrorImpl") \ |
| 279 V(_LocalVariableMirrorImpl, "_LocalVariableMirrorImpl") \ | 280 V(_LocalVariableMirrorImpl, "_LocalVariableMirrorImpl") \ |
| 280 V(_LocalParameterMirrorImpl, "_LocalParameterMirrorImpl") \ | 281 V(_LocalParameterMirrorImpl, "_LocalParameterMirrorImpl") \ |
| 281 V(_LocalIsolateMirrorImpl, "_LocalIsolateMirrorImpl") \ | 282 V(_LocalIsolateMirrorImpl, "_LocalIsolateMirrorImpl") \ |
| 282 V(_LocalMirrorSystemImpl, "_LocalMirrorSystemImpl") \ | 283 V(_LocalMirrorSystemImpl, "_LocalMirrorSystemImpl") \ |
| 283 V(_LocalTypedefMirrorImpl, "_LocalTypedefMirrorImpl") \ | 284 V(_LocalTypedefMirrorImpl, "_LocalTypedefMirrorImpl") \ |
| 284 V(_LocalTypeVariableMirrorImpl, "_LocalTypeVariableMirrorImpl") \ | 285 V(_LocalTypeVariableMirrorImpl, "_LocalTypeVariableMirrorImpl") \ |
| 285 | 286 |
| (...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 480 friend class SnapshotReader; | 481 friend class SnapshotReader; |
| 481 friend class SnapshotWriter; | 482 friend class SnapshotWriter; |
| 482 friend class ApiMessageReader; | 483 friend class ApiMessageReader; |
| 483 | 484 |
| 484 DISALLOW_COPY_AND_ASSIGN(Symbols); | 485 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 485 }; | 486 }; |
| 486 | 487 |
| 487 } // namespace dart | 488 } // namespace dart |
| 488 | 489 |
| 489 #endif // VM_SYMBOLS_H_ | 490 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |