Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(53)

Side by Side Diff: runtime/vm/bootstrap_natives.h

Issue 23983026: Fill in type arguments when creating an object from the mirrors or embedding API. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: RareType Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « runtime/lib/mirrors_impl.dart ('k') | runtime/vm/dart_api_impl.cc » ('j') | runtime/vm/object.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698