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

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

Issue 211243009: Implement MethodMirror.location in the VM. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add to api and fix type warnings Created 6 years, 9 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
« no previous file with comments | « runtime/vm/bootstrap_natives.h ('k') | sdk/lib/mirrors/mirrors.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 287 matching lines...) Expand 10 before | Expand all | Expand 10 after
298 V(_LocalLibraryMirror, "_LocalLibraryMirror") \ 298 V(_LocalLibraryMirror, "_LocalLibraryMirror") \
299 V(_LocalLibraryDependencyMirror, "_LocalLibraryDependencyMirror") \ 299 V(_LocalLibraryDependencyMirror, "_LocalLibraryDependencyMirror") \
300 V(_LocalCombinatorMirror, "_LocalCombinatorMirror") \ 300 V(_LocalCombinatorMirror, "_LocalCombinatorMirror") \
301 V(_LocalMethodMirror, "_LocalMethodMirror") \ 301 V(_LocalMethodMirror, "_LocalMethodMirror") \
302 V(_LocalVariableMirror, "_LocalVariableMirror") \ 302 V(_LocalVariableMirror, "_LocalVariableMirror") \
303 V(_LocalParameterMirror, "_LocalParameterMirror") \ 303 V(_LocalParameterMirror, "_LocalParameterMirror") \
304 V(_LocalIsolateMirror, "_LocalIsolateMirror") \ 304 V(_LocalIsolateMirror, "_LocalIsolateMirror") \
305 V(_LocalMirrorSystem, "_LocalMirrorSystem") \ 305 V(_LocalMirrorSystem, "_LocalMirrorSystem") \
306 V(_LocalTypedefMirror, "_LocalTypedefMirror") \ 306 V(_LocalTypedefMirror, "_LocalTypedefMirror") \
307 V(_LocalTypeVariableMirror, "_LocalTypeVariableMirror") \ 307 V(_LocalTypeVariableMirror, "_LocalTypeVariableMirror") \
308 V(_SourceLocation, "_SourceLocation") \
308 V(hashCode, "get:hashCode") \ 309 V(hashCode, "get:hashCode") \
309 V(_leftShiftWithMask32, "_leftShiftWithMask32") \ 310 V(_leftShiftWithMask32, "_leftShiftWithMask32") \
310 V(OptimizedOut, "<optimized out>") \ 311 V(OptimizedOut, "<optimized out>") \
311 V(NotInitialized, "<not initialized>") \ 312 V(NotInitialized, "<not initialized>") \
312 V(ClassId, "get:_classId") \ 313 V(ClassId, "get:_classId") \
313 V(AllocationStubFor, "Allocation stub for ") \ 314 V(AllocationStubFor, "Allocation stub for ") \
314 V(TempParam, ":temp_param") \ 315 V(TempParam, ":temp_param") \
315 316
316 317
317 // Contains a list of frequently used strings in a canonicalized form. This 318 // Contains a list of frequently used strings in a canonicalized form. This
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
523 friend class SnapshotReader; 524 friend class SnapshotReader;
524 friend class SnapshotWriter; 525 friend class SnapshotWriter;
525 friend class ApiMessageReader; 526 friend class ApiMessageReader;
526 527
527 DISALLOW_COPY_AND_ASSIGN(Symbols); 528 DISALLOW_COPY_AND_ASSIGN(Symbols);
528 }; 529 };
529 530
530 } // namespace dart 531 } // namespace dart
531 532
532 #endif // VM_SYMBOLS_H_ 533 #endif // VM_SYMBOLS_H_
OLDNEW
« no previous file with comments | « runtime/vm/bootstrap_natives.h ('k') | sdk/lib/mirrors/mirrors.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698