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

Unified Diff: runtime/vm/debugger_api_impl.cc

Issue 10441111: - Rename class index to class id. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 7 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
« no previous file with comments | « runtime/vm/dart_api_impl.cc ('k') | runtime/vm/intrinsifier_ia32.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/debugger_api_impl.cc
===================================================================
--- runtime/vm/debugger_api_impl.cc (revision 8135)
+++ runtime/vm/debugger_api_impl.cc (working copy)
@@ -405,7 +405,7 @@
Instance& obj = Instance::Handle();
UNWRAP_AND_CHECK_PARAM(Instance, obj, object_in);
CHECK_NOT_NULL(class_id);
- *class_id = Class::Handle(obj.clazz()).index();
+ *class_id = Class::Handle(obj.clazz()).id();
return Api::True(isolate);
}
@@ -443,7 +443,7 @@
*super_class_id = 0;
cls = cls.SuperClass();
if (!cls.IsNull()) {
- *super_class_id = cls.index();
+ *super_class_id = cls.id();
}
}
if (static_fields != NULL) {
« no previous file with comments | « runtime/vm/dart_api_impl.cc ('k') | runtime/vm/intrinsifier_ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698