| 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 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 255 V(MirrorReference_equals, 2) \ | 255 V(MirrorReference_equals, 2) \ |
| 256 V(InstanceMirror_invoke, 4) \ | 256 V(InstanceMirror_invoke, 4) \ |
| 257 V(InstanceMirror_invokeGetter, 3) \ | 257 V(InstanceMirror_invokeGetter, 3) \ |
| 258 V(InstanceMirror_invokeSetter, 4) \ | 258 V(InstanceMirror_invokeSetter, 4) \ |
| 259 V(ClosureMirror_function, 1) \ | 259 V(ClosureMirror_function, 1) \ |
| 260 V(ClosureMirror_apply, 2) \ | 260 V(ClosureMirror_apply, 2) \ |
| 261 V(ClassMirror_name, 1) \ | 261 V(ClassMirror_name, 1) \ |
| 262 V(ClassMirror_library, 1) \ | 262 V(ClassMirror_library, 1) \ |
| 263 V(ClassMirror_supertype, 1) \ | 263 V(ClassMirror_supertype, 1) \ |
| 264 V(ClassMirror_interfaces, 1) \ | 264 V(ClassMirror_interfaces, 1) \ |
| 265 V(ClassMirror_mixin, 1) \ |
| 265 V(ClassMirror_members, 2) \ | 266 V(ClassMirror_members, 2) \ |
| 266 V(ClassMirror_constructors, 2) \ | 267 V(ClassMirror_constructors, 2) \ |
| 267 V(LibraryMirror_members, 2) \ | 268 V(LibraryMirror_members, 2) \ |
| 268 V(ClassMirror_invoke, 4) \ | 269 V(ClassMirror_invoke, 4) \ |
| 269 V(ClassMirror_invokeGetter, 3) \ | 270 V(ClassMirror_invokeGetter, 3) \ |
| 270 V(ClassMirror_invokeSetter, 4) \ | 271 V(ClassMirror_invokeSetter, 4) \ |
| 271 V(ClassMirror_invokeConstructor, 3) \ | 272 V(ClassMirror_invokeConstructor, 3) \ |
| 272 V(ClassMirror_type_variables, 1) \ | 273 V(ClassMirror_type_variables, 1) \ |
| 273 V(ClassMirror_type_arguments, 1) \ | 274 V(ClassMirror_type_arguments, 1) \ |
| 274 V(LibraryMirror_invoke, 4) \ | 275 V(LibraryMirror_invoke, 4) \ |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 static void DN_##name(Dart_NativeArguments args); | 309 static void DN_##name(Dart_NativeArguments args); |
| 309 | 310 |
| 310 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) | 311 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) |
| 311 | 312 |
| 312 #undef DECLARE_BOOTSTRAP_NATIVE | 313 #undef DECLARE_BOOTSTRAP_NATIVE |
| 313 }; | 314 }; |
| 314 | 315 |
| 315 } // namespace dart | 316 } // namespace dart |
| 316 | 317 |
| 317 #endif // VM_BOOTSTRAP_NATIVES_H_ | 318 #endif // VM_BOOTSTRAP_NATIVES_H_ |
| OLD | NEW |