| 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 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 300 V(Mirrors_makeLocalMirrorSystem, 0) \ | 300 V(Mirrors_makeLocalMirrorSystem, 0) \ |
| 301 V(Mirrors_mangleName, 2) \ | 301 V(Mirrors_mangleName, 2) \ |
| 302 V(MirrorReference_equals, 2) \ | 302 V(MirrorReference_equals, 2) \ |
| 303 V(InstanceMirror_invoke, 5) \ | 303 V(InstanceMirror_invoke, 5) \ |
| 304 V(InstanceMirror_invokeGetter, 3) \ | 304 V(InstanceMirror_invokeGetter, 3) \ |
| 305 V(InstanceMirror_invokeSetter, 4) \ | 305 V(InstanceMirror_invokeSetter, 4) \ |
| 306 V(InstanceMirror_computeType, 1) \ | 306 V(InstanceMirror_computeType, 1) \ |
| 307 V(ClosureMirror_function, 1) \ | 307 V(ClosureMirror_function, 1) \ |
| 308 V(TypeMirror_subtypeTest, 2) \ | 308 V(TypeMirror_subtypeTest, 2) \ |
| 309 V(TypeMirror_moreSpecificTest, 2) \ | 309 V(TypeMirror_moreSpecificTest, 2) \ |
| 310 V(ClassMirror_library, 1) \ | 310 V(ClassMirror_libraryUri, 1) \ |
| 311 V(ClassMirror_supertype, 1) \ | 311 V(ClassMirror_supertype, 1) \ |
| 312 V(ClassMirror_supertype_instantiated, 1) \ | 312 V(ClassMirror_supertype_instantiated, 1) \ |
| 313 V(ClassMirror_interfaces, 1) \ | 313 V(ClassMirror_interfaces, 1) \ |
| 314 V(ClassMirror_interfaces_instantiated, 1) \ | 314 V(ClassMirror_interfaces_instantiated, 1) \ |
| 315 V(ClassMirror_mixin, 1) \ | 315 V(ClassMirror_mixin, 1) \ |
| 316 V(ClassMirror_mixin_instantiated, 2) \ | 316 V(ClassMirror_mixin_instantiated, 2) \ |
| 317 V(ClassMirror_members, 3) \ | 317 V(ClassMirror_members, 3) \ |
| 318 V(ClassMirror_constructors, 3) \ | 318 V(ClassMirror_constructors, 3) \ |
| 319 V(LibraryMirror_members, 2) \ | 319 V(LibraryMirror_members, 2) \ |
| 320 V(LibraryMirror_libraryDependencies, 2) \ | 320 V(LibraryMirror_libraryDependencies, 2) \ |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 390 static void DN_##name(Dart_NativeArguments args); | 390 static void DN_##name(Dart_NativeArguments args); |
| 391 | 391 |
| 392 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) | 392 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) |
| 393 | 393 |
| 394 #undef DECLARE_BOOTSTRAP_NATIVE | 394 #undef DECLARE_BOOTSTRAP_NATIVE |
| 395 }; | 395 }; |
| 396 | 396 |
| 397 } // namespace dart | 397 } // namespace dart |
| 398 | 398 |
| 399 #endif // VM_BOOTSTRAP_NATIVES_H_ | 399 #endif // VM_BOOTSTRAP_NATIVES_H_ |
| OLD | NEW |