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 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
314 V(SetterPrefix, "set:") \ | 314 V(SetterPrefix, "set:") \ |
315 V(InitPrefix, "init:") \ | 315 V(InitPrefix, "init:") \ |
316 V(_New, "_new") \ | 316 V(_New, "_new") \ |
317 V(Index, "index") \ | 317 V(Index, "index") \ |
318 V(DartScheme, "dart:") \ | 318 V(DartScheme, "dart:") \ |
319 V(DartSchemePrivate, "dart:_") \ | 319 V(DartSchemePrivate, "dart:_") \ |
320 V(DartNativeWrappers, "dart:nativewrappers") \ | 320 V(DartNativeWrappers, "dart:nativewrappers") \ |
321 V(DartNativeWrappersLibName, "dart.nativewrappers") \ | 321 V(DartNativeWrappersLibName, "dart.nativewrappers") \ |
322 V(DartCore, "dart:core") \ | 322 V(DartCore, "dart:core") \ |
323 V(DartCollection, "dart:collection") \ | 323 V(DartCollection, "dart:collection") \ |
324 V(DartDeveloper, "dart:developer") \ | |
325 V(DartInternal, "dart:_internal") \ | 324 V(DartInternal, "dart:_internal") \ |
326 V(DartIsolate, "dart:isolate") \ | 325 V(DartIsolate, "dart:isolate") \ |
327 V(DartMirrors, "dart:mirrors") \ | 326 V(DartMirrors, "dart:mirrors") \ |
328 V(DartTypedData, "dart:typed_data") \ | 327 V(DartTypedData, "dart:typed_data") \ |
329 V(DartVMService, "dart:vmservice") \ | 328 V(DartVMService, "dart:vmservice") \ |
| 329 V(DartProfiler, "dart:profiler") \ |
330 V(DartIOLibName, "dart.io") \ | 330 V(DartIOLibName, "dart.io") \ |
331 V(EvalSourceUri, "evaluate:source") \ | 331 V(EvalSourceUri, "evaluate:source") \ |
332 V(_Random, "_Random") \ | 332 V(_Random, "_Random") \ |
333 V(_state, "_state") \ | 333 V(_state, "_state") \ |
334 V(_A, "_A") \ | 334 V(_A, "_A") \ |
335 V(_stackTrace, "_stackTrace") \ | 335 V(_stackTrace, "_stackTrace") \ |
336 V(_SpecialTypeMirror, "_SpecialTypeMirror") \ | 336 V(_SpecialTypeMirror, "_SpecialTypeMirror") \ |
337 V(_LocalClassMirror, "_LocalClassMirror") \ | 337 V(_LocalClassMirror, "_LocalClassMirror") \ |
338 V(_LocalFunctionTypeMirror, "_LocalFunctionTypeMirror") \ | 338 V(_LocalFunctionTypeMirror, "_LocalFunctionTypeMirror") \ |
339 V(_LocalLibraryMirror, "_LocalLibraryMirror") \ | 339 V(_LocalLibraryMirror, "_LocalLibraryMirror") \ |
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
614 friend class SnapshotReader; | 614 friend class SnapshotReader; |
615 friend class SnapshotWriter; | 615 friend class SnapshotWriter; |
616 friend class ApiMessageReader; | 616 friend class ApiMessageReader; |
617 | 617 |
618 DISALLOW_COPY_AND_ASSIGN(Symbols); | 618 DISALLOW_COPY_AND_ASSIGN(Symbols); |
619 }; | 619 }; |
620 | 620 |
621 } // namespace dart | 621 } // namespace dart |
622 | 622 |
623 #endif // VM_SYMBOLS_H_ | 623 #endif // VM_SYMBOLS_H_ |
OLD | NEW |