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

Unified Diff: runtime/lib/mirrors.cc

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.cc
===================================================================
--- runtime/lib/mirrors.cc (revision 24540)
+++ runtime/lib/mirrors.cc (working copy)
@@ -125,7 +125,7 @@
static Dart_Handle CreateVMReference(Dart_Handle handle) {
// Create the VMReference object.
- Dart_Handle cls_name = NewString("VMReference");
+ Dart_Handle cls_name = NewString("OldVMReference");
siva 2013/06/30 01:12:48 VMReference for the new internal VM class seems ve
rmacnak 2013/07/01 15:50:28 It is intended to be rather generic. It might hold
Dart_Handle type = Dart_GetType(MirrorLib(), cls_name, 0, NULL);
if (Dart_IsError(type)) {
return type;

Powered by Google App Engine
This is Rietveld 408576698