| OLD | NEW |
| 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 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 263 V(Mirrors_makeLocalMirrorSystem, 0) \ | 263 V(Mirrors_makeLocalMirrorSystem, 0) \ |
| 264 V(Mirrors_mangleName, 2) \ | 264 V(Mirrors_mangleName, 2) \ |
| 265 V(MirrorReference_equals, 2) \ | 265 V(MirrorReference_equals, 2) \ |
| 266 V(InstanceMirror_invoke, 5) \ | 266 V(InstanceMirror_invoke, 5) \ |
| 267 V(InstanceMirror_invokeGetter, 3) \ | 267 V(InstanceMirror_invokeGetter, 3) \ |
| 268 V(InstanceMirror_invokeSetter, 4) \ | 268 V(InstanceMirror_invokeSetter, 4) \ |
| 269 V(InstanceMirror_computeType, 1) \ | 269 V(InstanceMirror_computeType, 1) \ |
| 270 V(ClosureMirror_find_in_context, 2) \ | 270 V(ClosureMirror_find_in_context, 2) \ |
| 271 V(ClosureMirror_function, 1) \ | 271 V(ClosureMirror_function, 1) \ |
| 272 V(ClosureMirror_apply, 2) \ | 272 V(ClosureMirror_apply, 2) \ |
| 273 V(TypeMirror_subtypeTest, 2) \ |
| 274 V(TypeMirror_moreSpecificTest, 2) \ |
| 273 V(ClassMirror_library, 1) \ | 275 V(ClassMirror_library, 1) \ |
| 274 V(ClassMirror_supertype, 1) \ | 276 V(ClassMirror_supertype, 1) \ |
| 275 V(ClassMirror_supertype_instantiated, 1) \ | 277 V(ClassMirror_supertype_instantiated, 1) \ |
| 276 V(ClassMirror_interfaces, 1) \ | 278 V(ClassMirror_interfaces, 1) \ |
| 277 V(ClassMirror_interfaces_instantiated, 1) \ | 279 V(ClassMirror_interfaces_instantiated, 1) \ |
| 278 V(ClassMirror_mixin, 1) \ | 280 V(ClassMirror_mixin, 1) \ |
| 279 V(ClassMirror_mixin_instantiated, 2) \ | 281 V(ClassMirror_mixin_instantiated, 2) \ |
| 280 V(ClassMirror_members, 2) \ | 282 V(ClassMirror_members, 2) \ |
| 281 V(ClassMirror_constructors, 2) \ | 283 V(ClassMirror_constructors, 2) \ |
| 282 V(LibraryMirror_members, 2) \ | 284 V(LibraryMirror_members, 2) \ |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 static void DN_##name(Dart_NativeArguments args); | 328 static void DN_##name(Dart_NativeArguments args); |
| 327 | 329 |
| 328 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) | 330 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) |
| 329 | 331 |
| 330 #undef DECLARE_BOOTSTRAP_NATIVE | 332 #undef DECLARE_BOOTSTRAP_NATIVE |
| 331 }; | 333 }; |
| 332 | 334 |
| 333 } // namespace dart | 335 } // namespace dart |
| 334 | 336 |
| 335 #endif // VM_BOOTSTRAP_NATIVES_H_ | 337 #endif // VM_BOOTSTRAP_NATIVES_H_ |
| OLD | NEW |