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

Side by Side Diff: tests/language/language_analyzer2.status

Issue 47513007: Fix the more specific relation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebase + fix test/status Created 7 years, 1 month 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 == dart2analyzer ] 5 [ $compiler == dart2analyzer ]
6 # Runtime negative test. No static errors or warnings. 6 # Runtime negative test. No static errors or warnings.
7 closure_call_wrong_argument_count_negative_test: skip 7 closure_call_wrong_argument_count_negative_test: skip
8 8
9 # TBD: using built-in identifers 9 # TBD: using built-in identifers
10 built_in_identifier_prefix_test: fail # Issue 12694 10 built_in_identifier_prefix_test: fail # Issue 12694
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 malformed_test/06: fail # test issue 14079, it is not error, but warning to use malformed type in "try-on" clause 163 malformed_test/06: fail # test issue 14079, it is not error, but warning to use malformed type in "try-on" clause
164 164
165 # test issue 14228 165 # test issue 14228
166 black_listed_test/none: fail # test issue 14228, warnings are required but not e xpected 166 black_listed_test/none: fail # test issue 14228, warnings are required but not e xpected
167 167
168 # test issue 14289 168 # test issue 14289
169 bailout3_test: fail # test issue 14289 169 bailout3_test: fail # test issue 14289
170 prefix9_test: fail # test issue 14289 170 prefix9_test: fail # test issue 14289
171 171
172 # test issue 14358, E does not implement inherited A.+ 172 # test issue 14358, E does not implement inherited A.+
173 type_promotion_closure_test/none: Fail 173 type_promotion_closure_test/01: Fail
174 174 type_promotion_closure_test/02: Fail
175 # test issue 14362, wrong assumption that dynamic << A
176 type_promotion_functions_test/none: Fail
177 175
178 # test issue 14363, "if ((a is B))" has the same effect as "if (a is B)", so no static warning expected 176 # test issue 14363, "if ((a is B))" has the same effect as "if (a is B)", so no static warning expected
179 type_promotion_parameter_test/53: Fail 177 type_promotion_parameter_test/53: Fail
180 178
181 # test issue 14364, "E<A> << D" 179 # test issue 14364, "E<A> << D"
182 type_promotion_more_specific_test/08: fail 180 type_promotion_more_specific_test/09: Fail
181 type_promotion_more_specific_test/10: Fail
182 type_promotion_more_specific_test/11: Fail
183 183
184 # test issue 14406, setter for final field was removed from spec 184 # test issue 14406, setter for final field was removed from spec
185 implicit_setter_test/01: fail 185 implicit_setter_test/01: fail
186 implicit_setter_test/02: fail 186 implicit_setter_test/02: fail
187 187
188 # test issue 14410, "typedef C = " is now really illegal syntax 188 # test issue 14410, "typedef C = " is now really illegal syntax
189 mixin_illegal_syntax_test/none: fail 189 mixin_illegal_syntax_test/none: fail
190 190
191 191
192 abstract_exact_selector_test: StaticWarning 192 abstract_exact_selector_test: StaticWarning
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after
459 switch5_negative_test: CompileTimeError 459 switch5_negative_test: CompileTimeError
460 switch6_test: StaticWarning 460 switch6_test: StaticWarning
461 switch7_negative_test: CompileTimeError 461 switch7_negative_test: CompileTimeError
462 switch_fallthru_test: StaticWarning 462 switch_fallthru_test: StaticWarning
463 test_negative_test: CompileTimeError 463 test_negative_test: CompileTimeError
464 top_level_non_prefixed_library_test: StaticWarning 464 top_level_non_prefixed_library_test: StaticWarning
465 try_catch4_test: StaticWarning 465 try_catch4_test: StaticWarning
466 try_catch5_test: StaticWarning 466 try_catch5_test: StaticWarning
467 type_argument_in_super_type_test: StaticWarning 467 type_argument_in_super_type_test: StaticWarning
468 typed_selector2_test: StaticWarning 468 typed_selector2_test: StaticWarning
469 type_promotion_closure_test/05: StaticWarning
470 type_promotion_closure_test/08: StaticWarning
471 type_promotion_more_specific_test/06: StaticWarning
472 type_promotion_more_specific_test/07: StaticWarning
473 type_variable_bounds2_test/05: StaticWarning 469 type_variable_bounds2_test/05: StaticWarning
474 type_variable_bounds3_test/00: StaticWarning 470 type_variable_bounds3_test/00: StaticWarning
475 type_variable_identifier_expression_test: StaticWarning 471 type_variable_identifier_expression_test: StaticWarning
476 type_variable_scope2_test: StaticWarning 472 type_variable_scope2_test: StaticWarning
477 unary_plus_negative_test: CompileTimeError 473 unary_plus_negative_test: CompileTimeError
478 unbound_getter_test: StaticWarning 474 unbound_getter_test: StaticWarning
479 unhandled_exception_negative_test: CompileTimeError 475 unhandled_exception_negative_test: CompileTimeError
480 unresolved_top_level_method_negative_test: CompileTimeError 476 unresolved_top_level_method_negative_test: CompileTimeError
481 vm/type_cast_vm_test: StaticWarning 477 vm/type_cast_vm_test: StaticWarning
482 vm/type_vm_test: StaticWarning 478 vm/type_vm_test: StaticWarning
483 void_type_test: StaticWarning 479 void_type_test: StaticWarning
OLDNEW
« no previous file with comments | « tests/language/language_analyzer.status ('k') | tests/language/type_promotion_closure_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698