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 291 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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) \ | |
313 V(ClassMirror_invoke, 5) \ | 312 V(ClassMirror_invoke, 5) \ |
314 V(ClassMirror_invokeGetter, 3) \ | 313 V(ClassMirror_invokeGetter, 3) \ |
315 V(ClassMirror_invokeSetter, 4) \ | 314 V(ClassMirror_invokeSetter, 4) \ |
316 V(ClassMirror_invokeConstructor, 5) \ | 315 V(ClassMirror_invokeConstructor, 5) \ |
317 V(ClassMirror_type_variables, 1) \ | 316 V(ClassMirror_type_variables, 1) \ |
318 V(ClassMirror_type_arguments, 1) \ | 317 V(ClassMirror_type_arguments, 1) \ |
319 V(LibraryMirror_invoke, 5) \ | 318 V(LibraryMirror_invoke, 5) \ |
320 V(LibraryMirror_invokeGetter, 3) \ | 319 V(LibraryMirror_invokeGetter, 3) \ |
321 V(LibraryMirror_invokeSetter, 4) \ | 320 V(LibraryMirror_invokeSetter, 4) \ |
322 V(TypeVariableMirror_owner, 1) \ | 321 V(TypeVariableMirror_owner, 1) \ |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
357 static void DN_##name(Dart_NativeArguments args); | 356 static void DN_##name(Dart_NativeArguments args); |
358 | 357 |
359 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) | 358 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) |
360 | 359 |
361 #undef DECLARE_BOOTSTRAP_NATIVE | 360 #undef DECLARE_BOOTSTRAP_NATIVE |
362 }; | 361 }; |
363 | 362 |
364 } // namespace dart | 363 } // namespace dart |
365 | 364 |
366 #endif // VM_BOOTSTRAP_NATIVES_H_ | 365 #endif // VM_BOOTSTRAP_NATIVES_H_ |
OLD | NEW |