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

Side by Side Diff: tests/lib/lib.status

Issue 114713002: VM: Support calling through getters in InstanceMirror.delegate. Implement without accessing private… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: sync Created 7 years 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 [ $compiler == dart2js && $checked && $runtime == ie9 ] 5 [ $compiler == dart2js && $checked && $runtime == ie9 ]
6 convert/ascii_test: Skip # http://dartbug.com/15498 6 convert/ascii_test: Skip # http://dartbug.com/15498
7 convert/streamed_conversion_json_utf8_encode_test: Skip # http://dartbug.com/154 98 7 convert/streamed_conversion_json_utf8_encode_test: Skip # http://dartbug.com/154 98
8 convert/streamed_conversion_utf8_encode_test: Skip # http://dartbug.com/15498 8 convert/streamed_conversion_utf8_encode_test: Skip # http://dartbug.com/15498
9 9
10 [ $csp ] 10 [ $csp ]
11 mirrors/delegate_test: RuntimeError # Issue 13864 11 mirrors/delegate_test: RuntimeError # Issue 13864
12 12
13 [ $compiler == dart2js ] 13 [ $compiler == dart2js ]
14 async/schedule_microtask6_test: RuntimeError # global error handling is not supp orted. http://dartbug.com/5958 14 async/schedule_microtask6_test: RuntimeError # global error handling is not supp orted. http://dartbug.com/5958
15 15
16 math/double_pow_test: RuntimeError 16 math/double_pow_test: RuntimeError
17 math/low_test: RuntimeError 17 math/low_test: RuntimeError
18 18
19 mirrors/basic_types_in_dart_core_test: RuntimeError # Issue 14025 19 mirrors/basic_types_in_dart_core_test: RuntimeError # Issue 14025
20 mirrors/class_declarations_test/none: RuntimeError # Issue 13440 20 mirrors/class_declarations_test/none: RuntimeError # Issue 13440
21 mirrors/closures_test/none: RuntimeError # Issue 6490 21 mirrors/closures_test/none: RuntimeError # Issue 6490
22 mirrors/constructor_kinds_test: RuntimeError # Issue 13799 22 mirrors/constructor_kinds_test: RuntimeError # Issue 13799
23 mirrors/constructor_private_name_test: CompileTimeError # Issue 13597 23 mirrors/constructor_private_name_test: CompileTimeError # Issue 13597
24 mirrors/delegate_call_through_getter_test: RuntimeError # Issue 15138
24 mirrors/equality_test/02: RuntimeError # Issue 12785 25 mirrors/equality_test/02: RuntimeError # Issue 12785
25 mirrors/fake_function_with_call_test: RuntimeError # Issue 11612 26 mirrors/fake_function_with_call_test: RuntimeError # Issue 11612
26 mirrors/fake_function_without_call_test: RuntimeError # Issue 11612 27 mirrors/fake_function_without_call_test: RuntimeError # Issue 11612
27 mirrors/find_in_context_test: Fail # Issue 6490 28 mirrors/find_in_context_test: Fail # Issue 6490
28 mirrors/find_in_context_private_test: Fail # Issue 6490 29 mirrors/find_in_context_private_test: Fail # Issue 6490
29 mirrors/find_in_context_fake_function_test: Fail # Issue 6490 30 mirrors/find_in_context_fake_function_test: Fail # Issue 6490
30 mirrors/function_type_mirror_test: RuntimeError # Issue 12166 31 mirrors/function_type_mirror_test: RuntimeError # Issue 12166
31 mirrors/generic_f_bounded_mixin_application_test: RuntimeError # Issue 12087 32 mirrors/generic_f_bounded_mixin_application_test: RuntimeError # Issue 12087
32 mirrors/generic_function_typedef_test: RuntimeError # Issue 12333 33 mirrors/generic_function_typedef_test: RuntimeError # Issue 12333
33 mirrors/generic_interface_test: RuntimeError # Issue 12087 34 mirrors/generic_interface_test: RuntimeError # Issue 12087
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 262
262 mirrors/redirecting_factory_test/01: StaticWarning # test issue X, The return ty pe 'Class<T2, T1>' of the redirected constructor is not assignable to 'Class<T1, T2>' 263 mirrors/redirecting_factory_test/01: StaticWarning # test issue X, The return ty pe 'Class<T2, T1>' of the redirected constructor is not assignable to 'Class<T1, T2>'
263 mirrors/redirecting_factory_test/none: StaticWarning # test issue X, The return type 'Class<T2, T1>' of the redirected constructor is not assignable to 'Class<T 1, T2> 264 mirrors/redirecting_factory_test/none: StaticWarning # test issue X, The return type 'Class<T2, T1>' of the redirected constructor is not assignable to 'Class<T 1, T2>
264 265
265 mirrors/fake_function_without_call_test: StaticWarning, OK # Implements Function without defining call. 266 mirrors/fake_function_without_call_test: StaticWarning, OK # Implements Function without defining call.
266 mirrors/find_in_context_fake_function_test: StaticWarning, OK # Implements Funct ion without defining call. 267 mirrors/find_in_context_fake_function_test: StaticWarning, OK # Implements Funct ion without defining call.
267 mirrors/immutable_collections_test: StaticWarning, OK # Expect failure for any t ype of Iterable. 268 mirrors/immutable_collections_test: StaticWarning, OK # Expect failure for any t ype of Iterable.
268 mirrors/inference_and_no_such_method_test: StaticWarning, OK # Expect to trigger noSuchMethod. 269 mirrors/inference_and_no_such_method_test: StaticWarning, OK # Expect to trigger noSuchMethod.
269 mirrors/repeated_private_anon_mixin_app_test: StaticWarning, OK # Intentional li brary name conflict. 270 mirrors/repeated_private_anon_mixin_app_test: StaticWarning, OK # Intentional li brary name conflict.
270 mirrors/removed_api_test: StaticWarning, OK # Deliberately refers to undeclared members. 271 mirrors/removed_api_test: StaticWarning, OK # Deliberately refers to undeclared members.
OLDNEW
« no previous file with comments | « tests/language/language_dart2js.status ('k') | tests/lib/mirrors/delegate_call_through_getter_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698