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

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

Issue 189843003: Reapply "Access to imports in the VM's runtime mirrors. Extend test coverage of the source mirrors." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 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') | runtime/vm/object.h » ('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 291 matching lines...) Expand 10 before | Expand all | Expand 10 after
302 V(ClassMirror_library, 1) \ 302 V(ClassMirror_library, 1) \
303 V(ClassMirror_supertype, 1) \ 303 V(ClassMirror_supertype, 1) \
304 V(ClassMirror_supertype_instantiated, 1) \ 304 V(ClassMirror_supertype_instantiated, 1) \
305 V(ClassMirror_interfaces, 1) \ 305 V(ClassMirror_interfaces, 1) \
306 V(ClassMirror_interfaces_instantiated, 1) \ 306 V(ClassMirror_interfaces_instantiated, 1) \
307 V(ClassMirror_mixin, 1) \ 307 V(ClassMirror_mixin, 1) \
308 V(ClassMirror_mixin_instantiated, 2) \ 308 V(ClassMirror_mixin_instantiated, 2) \
309 V(ClassMirror_members, 2) \ 309 V(ClassMirror_members, 2) \
310 V(ClassMirror_constructors, 2) \ 310 V(ClassMirror_constructors, 2) \
311 V(LibraryMirror_members, 2) \ 311 V(LibraryMirror_members, 2) \
312 V(LibraryMirror_libraryDependencies, 2) \
312 V(ClassMirror_invoke, 5) \ 313 V(ClassMirror_invoke, 5) \
313 V(ClassMirror_invokeGetter, 3) \ 314 V(ClassMirror_invokeGetter, 3) \
314 V(ClassMirror_invokeSetter, 4) \ 315 V(ClassMirror_invokeSetter, 4) \
315 V(ClassMirror_invokeConstructor, 5) \ 316 V(ClassMirror_invokeConstructor, 5) \
316 V(ClassMirror_type_variables, 1) \ 317 V(ClassMirror_type_variables, 1) \
317 V(ClassMirror_type_arguments, 1) \ 318 V(ClassMirror_type_arguments, 1) \
318 V(LibraryMirror_invoke, 5) \ 319 V(LibraryMirror_invoke, 5) \
319 V(LibraryMirror_invokeGetter, 3) \ 320 V(LibraryMirror_invokeGetter, 3) \
320 V(LibraryMirror_invokeSetter, 4) \ 321 V(LibraryMirror_invokeSetter, 4) \
321 V(TypeVariableMirror_owner, 1) \ 322 V(TypeVariableMirror_owner, 1) \
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
356 static void DN_##name(Dart_NativeArguments args); 357 static void DN_##name(Dart_NativeArguments args);
357 358
358 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) 359 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE)
359 360
360 #undef DECLARE_BOOTSTRAP_NATIVE 361 #undef DECLARE_BOOTSTRAP_NATIVE
361 }; 362 };
362 363
363 } // namespace dart 364 } // namespace dart
364 365
365 #endif // VM_BOOTSTRAP_NATIVES_H_ 366 #endif // VM_BOOTSTRAP_NATIVES_H_
OLDNEW
« no previous file with comments | « runtime/lib/mirrors_impl.dart ('k') | runtime/vm/object.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698