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

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

Issue 18473005: Add a MirrorReference reflectee to MethodMirrors. Name getter now refers to (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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « runtime/lib/mirrors_impl.dart ('k') | tests/lib/mirrors/method_mirror_test.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_BOOTSTRAP_NATIVES_H_ 5 #ifndef VM_BOOTSTRAP_NATIVES_H_
6 #define VM_BOOTSTRAP_NATIVES_H_ 6 #define VM_BOOTSTRAP_NATIVES_H_
7 7
8 #include "vm/native_entry.h" 8 #include "vm/native_entry.h"
9 9
10 // bootstrap dart natives used in the core dart library. 10 // bootstrap dart natives used in the core dart library.
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 V(Mirrors_makeLocalInstanceMirror, 1) \ 239 V(Mirrors_makeLocalInstanceMirror, 1) \
240 V(Mirrors_makeLocalClassMirror, 1) \ 240 V(Mirrors_makeLocalClassMirror, 1) \
241 V(Mirrors_makeLocalMirrorSystem, 0) \ 241 V(Mirrors_makeLocalMirrorSystem, 0) \
242 V(Mirrors_metadata, 1) \ 242 V(Mirrors_metadata, 1) \
243 V(LocalObjectMirrorImpl_invoke, 4) \ 243 V(LocalObjectMirrorImpl_invoke, 4) \
244 V(LocalObjectMirrorImpl_getField, 2) \ 244 V(LocalObjectMirrorImpl_getField, 2) \
245 V(LocalObjectMirrorImpl_setField, 4) \ 245 V(LocalObjectMirrorImpl_setField, 4) \
246 V(LocalClosureMirrorImpl_apply, 3) \ 246 V(LocalClosureMirrorImpl_apply, 3) \
247 V(LocalClassMirrorImpl_invokeConstructor, 4) \ 247 V(LocalClassMirrorImpl_invokeConstructor, 4) \
248 V(ClassMirror_name, 1) \ 248 V(ClassMirror_name, 1) \
249 V(MethodMirror_name, 1) \
249 V(GrowableObjectArray_allocate, 2) \ 250 V(GrowableObjectArray_allocate, 2) \
250 V(GrowableObjectArray_getIndexed, 2) \ 251 V(GrowableObjectArray_getIndexed, 2) \
251 V(GrowableObjectArray_setIndexed, 3) \ 252 V(GrowableObjectArray_setIndexed, 3) \
252 V(GrowableObjectArray_getLength, 1) \ 253 V(GrowableObjectArray_getLength, 1) \
253 V(GrowableObjectArray_getCapacity, 1) \ 254 V(GrowableObjectArray_getCapacity, 1) \
254 V(GrowableObjectArray_setLength, 2) \ 255 V(GrowableObjectArray_setLength, 2) \
255 V(GrowableObjectArray_setData, 2) \ 256 V(GrowableObjectArray_setData, 2) \
256 V(WeakProperty_new, 2) \ 257 V(WeakProperty_new, 2) \
257 V(WeakProperty_getKey, 1) \ 258 V(WeakProperty_getKey, 1) \
258 V(WeakProperty_getValue, 1) \ 259 V(WeakProperty_getValue, 1) \
259 V(WeakProperty_setValue, 2) \ 260 V(WeakProperty_setValue, 2) \
260 261
261 class BootstrapNatives : public AllStatic { 262 class BootstrapNatives : public AllStatic {
262 public: 263 public:
263 static Dart_NativeFunction Lookup(Dart_Handle name, int argument_count); 264 static Dart_NativeFunction Lookup(Dart_Handle name, int argument_count);
264 265
265 #define DECLARE_BOOTSTRAP_NATIVE(name, ignored) \ 266 #define DECLARE_BOOTSTRAP_NATIVE(name, ignored) \
266 static void DN_##name(Dart_NativeArguments args); 267 static void DN_##name(Dart_NativeArguments args);
267 268
268 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) 269 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE)
269 270
270 #undef DECLARE_BOOTSTRAP_NATIVE 271 #undef DECLARE_BOOTSTRAP_NATIVE
271 }; 272 };
272 273
273 } // namespace dart 274 } // namespace dart
274 275
275 #endif // VM_BOOTSTRAP_NATIVES_H_ 276 #endif // VM_BOOTSTRAP_NATIVES_H_
OLDNEW
« no previous file with comments | « runtime/lib/mirrors_impl.dart ('k') | tests/lib/mirrors/method_mirror_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698