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

Unified Diff: runtime/vm/bootstrap_natives.h

Issue 18463003: Implement the invoke methods (invoke, getField, setField, newInstance, apply) as internal natives. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 5 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/vm/bootstrap_natives.h
===================================================================
--- runtime/vm/bootstrap_natives.h (revision 25019)
+++ runtime/vm/bootstrap_natives.h (working copy)
@@ -240,12 +240,18 @@
V(Mirrors_makeLocalClassMirror, 1) \
V(Mirrors_makeLocalMirrorSystem, 0) \
V(Mirrors_metadata, 1) \
- V(LocalObjectMirrorImpl_invoke, 4) \
- V(LocalObjectMirrorImpl_getField, 2) \
- V(LocalObjectMirrorImpl_setField, 4) \
- V(LocalClosureMirrorImpl_apply, 3) \
- V(LocalClassMirrorImpl_invokeConstructor, 4) \
+ V(InstanceMirror_invoke, 4) \
+ V(InstanceMirror_invokeGetter, 3) \
+ V(InstanceMirror_invokeSetter, 4) \
+ V(ClosureMirror_apply, 2) \
V(ClassMirror_name, 1) \
+ V(ClassMirror_invoke, 4) \
+ V(ClassMirror_invokeGetter, 3) \
+ V(ClassMirror_invokeSetter, 4) \
+ V(ClassMirror_invokeConstructor, 3) \
+ V(LibraryMirror_invoke, 4) \
+ V(LibraryMirror_invokeGetter, 3) \
+ V(LibraryMirror_invokeSetter, 4) \
V(MethodMirror_name, 1) \
V(GrowableObjectArray_allocate, 2) \
V(GrowableObjectArray_getIndexed, 2) \

Powered by Google App Engine
This is Rietveld 408576698