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

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

Issue 276043003: Lay waste to ClosureMirror.findInContext. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: remove stub in dart2js Created 6 years, 7 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
« no previous file with comments | « runtime/lib/mirrors_impl.dart ('k') | sdk/lib/_internal/lib/js_mirrors.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 282 matching lines...) Expand 10 before | Expand all | Expand 10 after
293 V(Mirrors_evalInLibraryWithPrivateKey, 2) \ 293 V(Mirrors_evalInLibraryWithPrivateKey, 2) \
294 V(Mirrors_makeLocalClassMirror, 1) \ 294 V(Mirrors_makeLocalClassMirror, 1) \
295 V(Mirrors_makeLocalTypeMirror, 1) \ 295 V(Mirrors_makeLocalTypeMirror, 1) \
296 V(Mirrors_makeLocalMirrorSystem, 0) \ 296 V(Mirrors_makeLocalMirrorSystem, 0) \
297 V(Mirrors_mangleName, 2) \ 297 V(Mirrors_mangleName, 2) \
298 V(MirrorReference_equals, 2) \ 298 V(MirrorReference_equals, 2) \
299 V(InstanceMirror_invoke, 5) \ 299 V(InstanceMirror_invoke, 5) \
300 V(InstanceMirror_invokeGetter, 3) \ 300 V(InstanceMirror_invokeGetter, 3) \
301 V(InstanceMirror_invokeSetter, 4) \ 301 V(InstanceMirror_invokeSetter, 4) \
302 V(InstanceMirror_computeType, 1) \ 302 V(InstanceMirror_computeType, 1) \
303 V(ClosureMirror_find_in_context, 2) \
304 V(ClosureMirror_function, 1) \ 303 V(ClosureMirror_function, 1) \
305 V(TypeMirror_subtypeTest, 2) \ 304 V(TypeMirror_subtypeTest, 2) \
306 V(TypeMirror_moreSpecificTest, 2) \ 305 V(TypeMirror_moreSpecificTest, 2) \
307 V(ClassMirror_library, 1) \ 306 V(ClassMirror_library, 1) \
308 V(ClassMirror_supertype, 1) \ 307 V(ClassMirror_supertype, 1) \
309 V(ClassMirror_supertype_instantiated, 1) \ 308 V(ClassMirror_supertype_instantiated, 1) \
310 V(ClassMirror_interfaces, 1) \ 309 V(ClassMirror_interfaces, 1) \
311 V(ClassMirror_interfaces_instantiated, 1) \ 310 V(ClassMirror_interfaces_instantiated, 1) \
312 V(ClassMirror_mixin, 1) \ 311 V(ClassMirror_mixin, 1) \
313 V(ClassMirror_mixin_instantiated, 2) \ 312 V(ClassMirror_mixin_instantiated, 2) \
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
372 static void DN_##name(Dart_NativeArguments args); 371 static void DN_##name(Dart_NativeArguments args);
373 372
374 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) 373 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE)
375 374
376 #undef DECLARE_BOOTSTRAP_NATIVE 375 #undef DECLARE_BOOTSTRAP_NATIVE
377 }; 376 };
378 377
379 } // namespace dart 378 } // namespace dart
380 379
381 #endif // VM_BOOTSTRAP_NATIVES_H_ 380 #endif // VM_BOOTSTRAP_NATIVES_H_
OLDNEW
« no previous file with comments | « runtime/lib/mirrors_impl.dart ('k') | sdk/lib/_internal/lib/js_mirrors.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698