Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1297)

Side by Side Diff: runtime/vm/symbols.h

Issue 154733003: Access to imports in the VM's runtime mirrors. Extend test coverage of the source mirrors. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 279 matching lines...) Expand 10 before | Expand all | Expand 10 after
290 V(DartTypedData, "dart:typed_data") \ 290 V(DartTypedData, "dart:typed_data") \
291 V(DartVMService, "dart:vmservice") \ 291 V(DartVMService, "dart:vmservice") \
292 V(_Random, "_Random") \ 292 V(_Random, "_Random") \
293 V(_state, "_state") \ 293 V(_state, "_state") \
294 V(_A, "_A") \ 294 V(_A, "_A") \
295 V(_stackTrace, "_stackTrace") \ 295 V(_stackTrace, "_stackTrace") \
296 V(_SpecialTypeMirror, "_SpecialTypeMirror") \ 296 V(_SpecialTypeMirror, "_SpecialTypeMirror") \
297 V(_LocalClassMirror, "_LocalClassMirror") \ 297 V(_LocalClassMirror, "_LocalClassMirror") \
298 V(_LocalFunctionTypeMirror, "_LocalFunctionTypeMirror") \ 298 V(_LocalFunctionTypeMirror, "_LocalFunctionTypeMirror") \
299 V(_LocalLibraryMirror, "_LocalLibraryMirror") \ 299 V(_LocalLibraryMirror, "_LocalLibraryMirror") \
300 V(_LocalLibraryDependencyMirror, "_LocalLibraryDependencyMirror") \
301 V(_LocalCombinatorMirror, "_LocalCombinatorMirror") \
300 V(_LocalMethodMirror, "_LocalMethodMirror") \ 302 V(_LocalMethodMirror, "_LocalMethodMirror") \
301 V(_LocalVariableMirror, "_LocalVariableMirror") \ 303 V(_LocalVariableMirror, "_LocalVariableMirror") \
302 V(_LocalParameterMirror, "_LocalParameterMirror") \ 304 V(_LocalParameterMirror, "_LocalParameterMirror") \
303 V(_LocalIsolateMirror, "_LocalIsolateMirror") \ 305 V(_LocalIsolateMirror, "_LocalIsolateMirror") \
304 V(_LocalMirrorSystem, "_LocalMirrorSystem") \ 306 V(_LocalMirrorSystem, "_LocalMirrorSystem") \
305 V(_LocalTypedefMirror, "_LocalTypedefMirror") \ 307 V(_LocalTypedefMirror, "_LocalTypedefMirror") \
306 V(_LocalTypeVariableMirror, "_LocalTypeVariableMirror") \ 308 V(_LocalTypeVariableMirror, "_LocalTypeVariableMirror") \
307 V(hashCode, "get:hashCode") \ 309 V(hashCode, "get:hashCode") \
308 V(_leftShiftWithMask32, "_leftShiftWithMask32") \ 310 V(_leftShiftWithMask32, "_leftShiftWithMask32") \
309 V(OptimizedOut, "<optimized out>") \ 311 V(OptimizedOut, "<optimized out>") \
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
520 friend class SnapshotReader; 522 friend class SnapshotReader;
521 friend class SnapshotWriter; 523 friend class SnapshotWriter;
522 friend class ApiMessageReader; 524 friend class ApiMessageReader;
523 525
524 DISALLOW_COPY_AND_ASSIGN(Symbols); 526 DISALLOW_COPY_AND_ASSIGN(Symbols);
525 }; 527 };
526 528
527 } // namespace dart 529 } // namespace dart
528 530
529 #endif // VM_SYMBOLS_H_ 531 #endif // VM_SYMBOLS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698