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

Unified Diff: runtime/lib/mirrors_impl.dart

Issue 18242003: Add a VM defined class MirrorReference as an opaque pointer for Dart code to VM internal objects. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: runtime/lib/mirrors_impl.dart
===================================================================
--- runtime/lib/mirrors_impl.dart (revision 24540)
+++ runtime/lib/mirrors_impl.dart (working copy)
@@ -156,7 +156,7 @@
// A VMReference is used to hold a reference to a VM-internal object,
// which can include things like libraries, classes, etc.
-class VMReference extends NativeFieldWrapperClass1 {
+class OldVMReference extends NativeFieldWrapperClass1 {
}
abstract class _LocalVMObjectMirrorImpl extends _LocalMirrorImpl {
@@ -166,7 +166,7 @@
// storing the Object reference itself here if the object is a Dart
// language objects (except for objects of type VMReference, of
// course).
- VMReference _reference;
+ OldVMReference _reference;
}
abstract class _LocalObjectMirrorImpl extends _LocalVMObjectMirrorImpl

Powered by Google App Engine
This is Rietveld 408576698