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

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

Issue 126823004: Add TypeMirror.isSubtypeOf, TypeMirror.isAssignableTo, ClassMirror.isSubclassOf (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: mark source mirrors as failing Created 6 years, 10 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
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 279 matching lines...) Expand 10 before | Expand all | Expand 10 after
290 V(Mirrors_makeLocalMirrorSystem, 0) \ 290 V(Mirrors_makeLocalMirrorSystem, 0) \
291 V(Mirrors_mangleName, 2) \ 291 V(Mirrors_mangleName, 2) \
292 V(MirrorReference_equals, 2) \ 292 V(MirrorReference_equals, 2) \
293 V(InstanceMirror_invoke, 5) \ 293 V(InstanceMirror_invoke, 5) \
294 V(InstanceMirror_invokeGetter, 3) \ 294 V(InstanceMirror_invokeGetter, 3) \
295 V(InstanceMirror_invokeSetter, 4) \ 295 V(InstanceMirror_invokeSetter, 4) \
296 V(InstanceMirror_computeType, 1) \ 296 V(InstanceMirror_computeType, 1) \
297 V(ClosureMirror_find_in_context, 2) \ 297 V(ClosureMirror_find_in_context, 2) \
298 V(ClosureMirror_function, 1) \ 298 V(ClosureMirror_function, 1) \
299 V(ClosureMirror_apply, 2) \ 299 V(ClosureMirror_apply, 2) \
300 V(TypeMirror_subtypeTest, 2) \
301 V(TypeMirror_moreSpecificTest, 2) \
300 V(ClassMirror_library, 1) \ 302 V(ClassMirror_library, 1) \
301 V(ClassMirror_supertype, 1) \ 303 V(ClassMirror_supertype, 1) \
302 V(ClassMirror_supertype_instantiated, 1) \ 304 V(ClassMirror_supertype_instantiated, 1) \
303 V(ClassMirror_interfaces, 1) \ 305 V(ClassMirror_interfaces, 1) \
304 V(ClassMirror_interfaces_instantiated, 1) \ 306 V(ClassMirror_interfaces_instantiated, 1) \
305 V(ClassMirror_mixin, 1) \ 307 V(ClassMirror_mixin, 1) \
306 V(ClassMirror_mixin_instantiated, 2) \ 308 V(ClassMirror_mixin_instantiated, 2) \
307 V(ClassMirror_members, 2) \ 309 V(ClassMirror_members, 2) \
308 V(ClassMirror_constructors, 2) \ 310 V(ClassMirror_constructors, 2) \
309 V(LibraryMirror_members, 2) \ 311 V(LibraryMirror_members, 2) \
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
353 static void DN_##name(Dart_NativeArguments args); 355 static void DN_##name(Dart_NativeArguments args);
354 356
355 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) 357 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE)
356 358
357 #undef DECLARE_BOOTSTRAP_NATIVE 359 #undef DECLARE_BOOTSTRAP_NATIVE
358 }; 360 };
359 361
360 } // namespace dart 362 } // namespace dart
361 363
362 #endif // VM_BOOTSTRAP_NATIVES_H_ 364 #endif // VM_BOOTSTRAP_NATIVES_H_
OLDNEW
« no previous file with comments | « runtime/lib/mirrors_impl.dart ('k') | sdk/lib/_internal/compiler/implementation/mirrors/dart2js_type_mirrors.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698