| 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 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 265 V(ClassMirror_library, 1) \ | 265 V(ClassMirror_library, 1) \ |
| 266 V(ClassMirror_supertype, 1) \ | 266 V(ClassMirror_supertype, 1) \ |
| 267 V(ClassMirror_interfaces, 1) \ | 267 V(ClassMirror_interfaces, 1) \ |
| 268 V(ClassMirror_mixin, 1) \ | 268 V(ClassMirror_mixin, 1) \ |
| 269 V(ClassMirror_members, 2) \ | 269 V(ClassMirror_members, 2) \ |
| 270 V(ClassMirror_constructors, 2) \ | 270 V(ClassMirror_constructors, 2) \ |
| 271 V(LibraryMirror_members, 2) \ | 271 V(LibraryMirror_members, 2) \ |
| 272 V(ClassMirror_invoke, 5) \ | 272 V(ClassMirror_invoke, 5) \ |
| 273 V(ClassMirror_invokeGetter, 3) \ | 273 V(ClassMirror_invokeGetter, 3) \ |
| 274 V(ClassMirror_invokeSetter, 4) \ | 274 V(ClassMirror_invokeSetter, 4) \ |
| 275 V(ClassMirror_invokeConstructor, 4) \ | 275 V(ClassMirror_invokeConstructor, 5) \ |
| 276 V(ClassMirror_type_variables, 1) \ | 276 V(ClassMirror_type_variables, 1) \ |
| 277 V(ClassMirror_type_arguments, 1) \ | 277 V(ClassMirror_type_arguments, 1) \ |
| 278 V(LibraryMirror_invoke, 5) \ | 278 V(LibraryMirror_invoke, 5) \ |
| 279 V(LibraryMirror_invokeGetter, 3) \ | 279 V(LibraryMirror_invokeGetter, 3) \ |
| 280 V(LibraryMirror_invokeSetter, 4) \ | 280 V(LibraryMirror_invokeSetter, 4) \ |
| 281 V(TypeVariableMirror_owner, 1) \ | 281 V(TypeVariableMirror_owner, 1) \ |
| 282 V(TypeVariableMirror_upper_bound, 1) \ | 282 V(TypeVariableMirror_upper_bound, 1) \ |
| 283 V(DeclarationMirror_metadata, 1) \ | 283 V(DeclarationMirror_metadata, 1) \ |
| 284 V(FunctionTypeMirror_call_method, 2) \ | 284 V(FunctionTypeMirror_call_method, 2) \ |
| 285 V(FunctionTypeMirror_parameters, 2) \ | 285 V(FunctionTypeMirror_parameters, 2) \ |
| (...skipping 26 matching lines...) Expand all Loading... |
| 312 static void DN_##name(Dart_NativeArguments args); | 312 static void DN_##name(Dart_NativeArguments args); |
| 313 | 313 |
| 314 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) | 314 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) |
| 315 | 315 |
| 316 #undef DECLARE_BOOTSTRAP_NATIVE | 316 #undef DECLARE_BOOTSTRAP_NATIVE |
| 317 }; | 317 }; |
| 318 | 318 |
| 319 } // namespace dart | 319 } // namespace dart |
| 320 | 320 |
| 321 #endif // VM_BOOTSTRAP_NATIVES_H_ | 321 #endif // VM_BOOTSTRAP_NATIVES_H_ |
| OLD | NEW |