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

Side by Side Diff: tests/co19/co19-analyzer.status

Issue 56773002: Issue 13241. Report StaticWarningCode.CONFLICTING_INSTANCE_METHOD_SETTER. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Use InheritanceManager 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) 2013, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2013, 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 == dartanalyzer ] 5 [ $compiler == dartanalyzer ]
6 6
7 # invalid argument for constant constructor 7 # invalid argument for constant constructor
8 Language/07_Classes/6_Constructors/3_Constant_Constructors_A05_t02: fail 8 Language/07_Classes/6_Constructors/3_Constant_Constructors_A05_t02: fail
9 9
10 # TBD: should we check that argument for dynamic parameter of constant construct or is not compatible with operation that is performed with it? 10 # TBD: should we check that argument for dynamic parameter of constant construct or is not compatible with operation that is performed with it?
11 Language/12_Expressions/01_Constants_A16_t03: fail 11 Language/12_Expressions/01_Constants_A16_t03: fail
12 12
13 # TBF: infinite look: class A {const A();final m = const A();} 13 # TBF: infinite look: class A {const A();final m = const A();}
14 Language/12_Expressions/01_Constants_A17_t03: fail 14 Language/12_Expressions/01_Constants_A17_t03: fail
15 15
16 # TBF: malformed or malbounded type in "conts" is static warning 16 # TBF: malformed or malbounded type in "conts" is static warning
17 Language/12_Expressions/12_Instance_Creation_A01_t08: Fail 17 Language/12_Expressions/12_Instance_Creation_A01_t08: Fail
18 18
19 # TBF: it seems that "12.15.3 Unqualied Invocation" was changed, so it may be no t an error anymore to call unknown function from top-level 19 # TBF: it seems that "12.15.3 Unqualied Invocation" was changed, so it may be no t an error anymore to call unknown function from top-level
20 Language/13_Statements/04_Local_Function_Declaration_A04_t02: Fail # co19-roll r 641: Please triage this failure 20 Language/13_Statements/04_Local_Function_Declaration_A04_t02: Fail # co19-roll r 641: Please triage this failure
21 21
22 # TBF: when we override "foo([x = 0]) {}" with "foo([x]) {}" we should report wa rning - different default value 22 # TBF: when we override "foo([x = 0]) {}" with "foo([x]) {}" we should report wa rning - different default value
23 Language/07_Classes/1_Instance_Methods_A04_t02: MissingStaticWarning 23 Language/07_Classes/1_Instance_Methods_A04_t02: MissingStaticWarning
24 Language/07_Classes/4_Abstract_Instance_Members_A07_t04: MissingStaticWarning 24 Language/07_Classes/4_Abstract_Instance_Members_A07_t04: MissingStaticWarning
25 25
26 # TBF: It is a static warning if a class C declares an instance method named n a nd has a setter named n=.
27 Language/07_Classes/1_Instance_Methods_A07_t01: MissingStaticWarning
28 Language/07_Classes/1_Instance_Methods_A07_t02: MissingStaticWarning
29
30 # TBF: Static members should not be accessible via subclasses. 26 # TBF: Static members should not be accessible via subclasses.
31 Language/07_Classes/7_Static_Methods_A01_t03: MissingStaticWarning 27 Language/07_Classes/7_Static_Methods_A01_t03: MissingStaticWarning
32 Language/07_Classes/9_Superclasses/1_Inheritance_and_Overriding_A01_t05: Missing StaticWarning 28 Language/07_Classes/9_Superclasses/1_Inheritance_and_Overriding_A01_t05: Missing StaticWarning
33 Language/08_Interfaces/5_Superinterfaces/1_Inheritance_and_Overriding_A01_t02: M issingStaticWarning 29 Language/08_Interfaces/5_Superinterfaces/1_Inheritance_and_Overriding_A01_t02: M issingStaticWarning
34 30
35 31
36 32
37 # co19 issue #442, undefined name "Expect" 33 # co19 issue #442, undefined name "Expect"
38 Language/15_Types/4_Interface_Types_A08_t03: fail, OK 34 Language/15_Types/4_Interface_Types_A08_t03: fail, OK
39 35
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 LibTest/isolate/isolate_api/streamSpawnFunction_A02_t01: Fail 233 LibTest/isolate/isolate_api/streamSpawnFunction_A02_t01: Fail
238 LibTest/isolate/isolate_api/streamSpawnFunction_A02_t02: Fail 234 LibTest/isolate/isolate_api/streamSpawnFunction_A02_t02: Fail
239 235
240 #co19 issue 631 236 #co19 issue 631
241 Language/12_Expressions/30_Identifier_Reference_A02_t01: Fail 237 Language/12_Expressions/30_Identifier_Reference_A02_t01: Fail
242 Language/13_Statements/03_Variable_Declaration_A01_t09: Fail 238 Language/13_Statements/03_Variable_Declaration_A01_t09: Fail
243 Language/13_Statements/03_Variable_Declaration_A01_t16: Fail 239 Language/13_Statements/03_Variable_Declaration_A01_t16: Fail
244 240
245 Language/13_Statements/09_Switch_A02_t04: Fail # Issue 629 241 Language/13_Statements/09_Switch_A02_t04: Fail # Issue 629
246 242
247
248
249
250 # co19 issue 642, The argument type 'int' cannot be assigned to the parameter ty pe 'Iterable' 243 # co19 issue 642, The argument type 'int' cannot be assigned to the parameter ty pe 'Iterable'
251 LibTest/collection/DoubleLinkedQueue/DoubleLinkedQueue_class_A01_t01: Fail, OK 244 LibTest/collection/DoubleLinkedQueue/DoubleLinkedQueue_class_A01_t01: Fail, OK
252 LibTest/collection/ListQueue/ListQueue_class_A01_t01: Fail, OK 245 LibTest/collection/ListQueue/ListQueue_class_A01_t01: Fail, OK
253 LibTest/collection/Queue/Queue_class_A01_t01: Fail, OK 246 LibTest/collection/Queue/Queue_class_A01_t01: Fail, OK
254 247
255 # co19 issue 644, The argument type 'int' cannot be assigned to the parameter ty pe '(String, Object) -> void' 248 # co19 issue 644, The argument type 'int' cannot be assigned to the parameter ty pe '(String, Object) -> void'
256 LibTest/collection/LinkedHashMap/allTests_A01_t01: Fail, OK 249 LibTest/collection/LinkedHashMap/allTests_A01_t01: Fail, OK
257 250
258 # co19 issue 645, "15.7 Type Void". Likewise, passing the result of a void metho d as a parameter or assigning it to a variable will cause a warning unless the v ariable/formal parameter has type dynamic. 251 # co19 issue 645, "15.7 Type Void". Likewise, passing the result of a void metho d as a parameter or assigning it to a variable will cause a warning unless the v ariable/formal parameter has type dynamic.
259 Language/06_Functions/06_Functions_A04_t01: Fail, OK 252 Language/06_Functions/06_Functions_A04_t01: Fail, OK
260 253
261 # co19 issue 646, I don't see where Spec requires any warning for boolean conver sion 254 # co19 issue 646, I don't see where Spec requires any warning for boolean conver sion
262 Language/12_Expressions/04_Booleans/1_Boolean_Conversion_A01_t02: MissingStaticW arning 255 Language/12_Expressions/04_Booleans/1_Boolean_Conversion_A01_t02: MissingStaticW arning
263 256
257 # co19 issue #652, test is invalid, class "C" is not inherited from "A"
258 Language/07_Classes/1_Instance_Methods_A07_t02: MissingStaticWarning, OK
259
260 # co19 issue #653, instance method setter with the same name
261 Language/07_Classes/3_Setters_A04_t02: StaticWarning, OK
262 Language/07_Classes/3_Setters_A04_t03: StaticWarning, OK
263 Language/07_Classes/3_Setters_A04_t04: StaticWarning, OK
264
265
266
264 Language/12_Expressions/15_Method_Invocation/2_Cascaded_Invocation_A01_t19: Miss ingStaticWarning 267 Language/12_Expressions/15_Method_Invocation/2_Cascaded_Invocation_A01_t19: Miss ingStaticWarning
265 Language/12_Expressions/15_Method_Invocation/3_Static_Invocation_A03_t02: Missin gStaticWarning 268 Language/12_Expressions/15_Method_Invocation/3_Static_Invocation_A03_t02: Missin gStaticWarning
266 Language/12_Expressions/15_Method_Invocation/3_Static_Invocation_A04_t09: Missin gStaticWarning 269 Language/12_Expressions/15_Method_Invocation/3_Static_Invocation_A04_t09: Missin gStaticWarning
267 Language/12_Expressions/19_Conditional_A01_t14: MissingStaticWarning 270 Language/12_Expressions/19_Conditional_A01_t14: MissingStaticWarning
268 Language/12_Expressions/20_Logical_Boolean_Expressions_A01_t10: MissingStaticWar ning 271 Language/12_Expressions/20_Logical_Boolean_Expressions_A01_t10: MissingStaticWar ning
269 Language/12_Expressions/20_Logical_Boolean_Expressions_A01_t11: MissingStaticWar ning 272 Language/12_Expressions/20_Logical_Boolean_Expressions_A01_t11: MissingStaticWar ning
270 Language/12_Expressions/20_Logical_Boolean_Expressions_A01_t12: MissingStaticWar ning 273 Language/12_Expressions/20_Logical_Boolean_Expressions_A01_t12: MissingStaticWar ning
271 Language/12_Expressions/20_Logical_Boolean_Expressions_A01_t13: MissingStaticWar ning 274 Language/12_Expressions/20_Logical_Boolean_Expressions_A01_t13: MissingStaticWar ning
272 Language/12_Expressions/20_Logical_Boolean_Expressions_A01_t14: MissingStaticWar ning 275 Language/12_Expressions/20_Logical_Boolean_Expressions_A01_t14: MissingStaticWar ning
273 Language/12_Expressions/20_Logical_Boolean_Expressions_A01_t15: MissingStaticWar ning 276 Language/12_Expressions/20_Logical_Boolean_Expressions_A01_t15: MissingStaticWar ning
(...skipping 20 matching lines...) Expand all
294 Language/05_Variables/05_Variables_A05_t07: MissingCompileTimeError # co19-roll r651: Please triage this failure 297 Language/05_Variables/05_Variables_A05_t07: MissingCompileTimeError # co19-roll r651: Please triage this failure
295 Language/05_Variables/05_Variables_A06_t01: MissingCompileTimeError # co19-roll r651: Please triage this failure 298 Language/05_Variables/05_Variables_A06_t01: MissingCompileTimeError # co19-roll r651: Please triage this failure
296 Language/05_Variables/05_Variables_A06_t02: MissingCompileTimeError # co19-roll r651: Please triage this failure 299 Language/05_Variables/05_Variables_A06_t02: MissingCompileTimeError # co19-roll r651: Please triage this failure
297 Language/05_Variables/05_Variables_A06_t03: MissingCompileTimeError # co19-roll r651: Please triage this failure 300 Language/05_Variables/05_Variables_A06_t03: MissingCompileTimeError # co19-roll r651: Please triage this failure
298 Language/07_Classes/8_Static_Variables_A01_t01: MissingStaticWarning # co19-roll r651: Please triage this failure 301 Language/07_Classes/8_Static_Variables_A01_t01: MissingStaticWarning # co19-roll r651: Please triage this failure
299 Language/12_Expressions/01_Constants_A20_t04: CompileTimeError # co19-roll r651: Please triage this failure 302 Language/12_Expressions/01_Constants_A20_t04: CompileTimeError # co19-roll r651: Please triage this failure
300 Language/12_Expressions/04_Booleans/1_Boolean_Conversion_A01_t03: MissingStaticW arning # co19-roll r651: Please triage this failure 303 Language/12_Expressions/04_Booleans/1_Boolean_Conversion_A01_t03: MissingStaticW arning # co19-roll r651: Please triage this failure
301 Language/12_Expressions/14_Function_Invocation/3_Unqualified_Invocation_A01_t13: CompileTimeError # co19-roll r651: Please triage this failure 304 Language/12_Expressions/14_Function_Invocation/3_Unqualified_Invocation_A01_t13: CompileTimeError # co19-roll r651: Please triage this failure
302 Language/12_Expressions/14_Function_Invocation/3_Unqualified_Invocation_A01_t17: MissingCompileTimeError # co19-roll r651: Please triage this failure 305 Language/12_Expressions/14_Function_Invocation/3_Unqualified_Invocation_A01_t17: MissingCompileTimeError # co19-roll r651: Please triage this failure
303 Language/12_Expressions/14_Function_Invocation/3_Unqualified_Invocation_A01_t18: MissingCompileTimeError # co19-roll r651: Please triage this failure 306 Language/12_Expressions/14_Function_Invocation/3_Unqualified_Invocation_A01_t18: MissingCompileTimeError # co19-roll r651: Please triage this failure
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698