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

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

Issue 26096002: New analyzer_experimental snapshot. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 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) 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 == dart2analyzer ] 5 [ $compiler == dart2analyzer ]
6 # not clear: null..[1](1)[2](2).foo(3, bar: 4)=5 - it seems that verything befor e =5 it not assignable
7 Language/07_Classes/6_Constructors/1_Generative_Constructors_A04_t15: fail
8
9 # invalid argument for constant constructor 6 # invalid argument for constant constructor
10 Language/07_Classes/6_Constructors/3_Constant_Constructors_A05_t02: fail 7 Language/07_Classes/6_Constructors/3_Constant_Constructors_A05_t02: fail
11 8
12 # TBF: _f is private, so does not collide
13 Language/07_Classes/1_Instance_Methods_A05_t08: fail
14
15 # TBD: should we check that argument for dynamic parameter of constant construct or is not compatible with operation that is performed with it? 9 # TBD: should we check that argument for dynamic parameter of constant construct or is not compatible with operation that is performed with it?
16 Language/12_Expressions/01_Constants_A16_t03: fail 10 Language/12_Expressions/01_Constants_A16_t03: fail
17 11
18 # TBD: should we report _error_ when constant creation uses arguments with types incompatible with parameters?
19 Language/12_Expressions/12_Instance_Creation/2_Const_A09_t02: fail
20 Language/12_Expressions/12_Instance_Creation/2_Const_A09_t03: fail
21
22 # TBF: infinite look: class A {const A();final m = const A();} 12 # TBF: infinite look: class A {const A();final m = const A();}
23 Language/12_Expressions/01_Constants_A17_t03: fail 13 Language/12_Expressions/01_Constants_A17_t03: fail
24 14
25 # analyzer issue https://code.google.com/p/dart/issues/detail?id=11534 15 # analyzer issue https://code.google.com/p/dart/issues/detail?id=11534
26 Language/15_Types/4_Interface_Types_A11_t01: Skip 16 Language/15_Types/4_Interface_Types_A11_t01: Skip
27 Language/15_Types/4_Interface_Types_A11_t02: Skip 17 Language/15_Types/4_Interface_Types_A11_t02: Skip
28 18
29 # TBF: Hence, a static warning will not be issued if f has no declared return ty pe, since the return type would be dynamic and dynamic may be assigned to void. 19 # TBF: "class B1 = A with M1;", typedef cannot be used for mixins
30 Language/13_Statements/11_Return_A07_t01: fail 20 Language/09_Mixins/1_Mixin_Application_A01_t01: Fail
21
22 # TBF: It is a compile-time error if the key of an entry in a constant map liter al is an instance of a class that implements the operator == unless the key is a string or integer.
23 Language/12_Expressions/07_Maps_A13_t01: Fail
24
25 # TBF: malformed or malbounded type in "conts" is static warning
26 Language/12_Expressions/12_Instance_Creation_A01_t08: Fail
27
28 # TBF: typedef self reference
29 Language/15_Types/3_Type_Declarations/1_Typedef_A07_t08: Fail
30 Language/15_Types/3_Type_Declarations/1_Typedef_A07_t09: Fail
31
32
31 33
32 # co19 issue #442, undefined name "Expect" 34 # co19 issue #442, undefined name "Expect"
33 Language/15_Types/4_Interface_Types_A08_t03: fail, OK 35 Language/15_Types/4_Interface_Types_A08_t03: fail, OK
34 36
35 # co19 issue #455, undeclared identifier is static warning 37 # co19 issue #455, undeclared identifier is static warning
36 Language/12_Expressions/14_Function_Invocation/3_Unqualified_Invocation_A01_t10: fail, OK 38 Language/12_Expressions/14_Function_Invocation/3_Unqualified_Invocation_A01_t10: fail, OK
39 Language/13_Statements/04_Local_Function_Declaration_A02_t02: fail, OK
37 Language/14_Libraries_and_Scripts/1_Imports_A02_t12: fail, OK 40 Language/14_Libraries_and_Scripts/1_Imports_A02_t12: fail, OK
38 Language/14_Libraries_and_Scripts/1_Imports_A02_t15: fail, OK 41 Language/14_Libraries_and_Scripts/1_Imports_A02_t15: fail, OK
39 42
43 # co19 issue #513, rules for finals were loosened, contradiction in spec was fix ed
44 Language/07_Classes/6_Constructors/1_Generative_Constructors_A21_t01: fail, OK
45
46 # co19 issue #515, it is a compile-time error if there is more than one entity w ith the same name declared in the same scope
47 Language/07_Classes/3_Setters_A08_t03: fail, OK
48
49 # co19 issue #593: Conditional expressions are now allowed as constant expressio ns
50 Language/12_Expressions/01_Constants_A15_t16: fail, OK
51
40 # co19 issue #438, Static variables are initialized lazily, need not be constant s 52 # co19 issue #438, Static variables are initialized lazily, need not be constant s
41 Language/12_Expressions/01_Constants_A16_t01: fail, OK 53 Language/12_Expressions/01_Constants_A16_t01: fail, OK
42 Language/12_Expressions/01_Constants_A16_t02: fail, OK 54 Language/12_Expressions/01_Constants_A16_t02: fail, OK
43 55
56 # co19 issue #420, "throw" requires expression, "rethrow" should be used instead
57 Language/12_Expressions/08_Throw_A05_t01: fail, OK
58 Language/12_Expressions/08_Throw_A05_t02: fail, OK
59 Language/12_Expressions/08_Throw_A05_t03: fail, OK
60
44 # co19 issue #454 (wrongly closed) 61 # co19 issue #454 (wrongly closed)
45 Language/12_Expressions/12_Instance_Creation/1_New_A01_t04: fail, OK 62 Language/12_Expressions/12_Instance_Creation/1_New_A01_t04: fail, OK
46 63
47 # co19 issue #528, Const: wrong number of type arguments 64 # co19 issue #528, Const: wrong number of type arguments
48 Language/12_Expressions/12_Instance_Creation_A01_t02: fail, OK 65 Language/12_Expressions/12_Instance_Creation_A01_t02: fail, OK
49 Language/12_Expressions/12_Instance_Creation_A01_t05: fail, OK 66 Language/12_Expressions/12_Instance_Creation_A01_t05: fail, OK
50 Language/12_Expressions/12_Instance_Creation_A01_t06: fail, OK 67 Language/12_Expressions/12_Instance_Creation_A01_t06: fail, OK
51 68
52 # co19 issue #433 (wrongly closed), missing @static-warning annotation 69 # co19 issue #433 (wrongly closed), missing @static-warning annotation
53 Language/12_Expressions/15_Method_Invocation/3_Static_Invocation_A03_t07: fail, OK 70 Language/12_Expressions/15_Method_Invocation/3_Static_Invocation_A03_t07: fail, OK
54 71
55 # co19 issue #541: tests contain unqualified reference to static members defined in superclass 72 # co19 issue #541: tests contain unqualified reference to static members defined in superclass
56 Language/12_Expressions/14_Function_Invocation/3_Unqualified_Invocation_A01_t07: fail, OK 73 Language/12_Expressions/14_Function_Invocation/3_Unqualified_Invocation_A01_t07: fail, OK
57 Language/12_Expressions/30_Identifier_Reference_A14_t03: fail, OK 74 Language/12_Expressions/30_Identifier_Reference_A14_t03: fail, OK
58 75
59 # co19 issue #543: invocation of a non-function 76 # co19 issue #543: invocation of a non-function
60 Language/12_Expressions/14_Function_Invocation/4_Function_Expression_Invocation_ A03_t02: fail, OK 77 Language/12_Expressions/14_Function_Invocation/4_Function_Expression_Invocation_ A03_t02: fail, OK
61 78
62 # co19 issue #564: URI can be any number adjacent string literals 79 # co19 issue #564: URI can be any number adjacent string literals
63 Language/14_Libraries_and_Scripts/5_URIs_A01_t24: fail, OK 80 Language/14_Libraries_and_Scripts/5_URIs_A01_t24: fail, OK
64 Language/14_Libraries_and_Scripts/5_URIs_A01_t25: fail, OK 81 Language/14_Libraries_and_Scripts/5_URIs_A01_t25: fail, OK
65 82
66 Language/09_Mixins/1_Mixin_Application_A01_t01: Fail # co19-roll r607: Please tr iage this failure 83 # co19 issue #609, return type of "factory M" is M, so we need static warning fo r "return;".
67 Language/12_Expressions/01_Constants_A22_t01: Fail # co19-roll r607: Please tria ge this failure 84 Language/13_Statements/11_Return_A07_t01: fail, OK
68 Language/12_Expressions/07_Maps_A13_t01: Fail # co19-roll r607: Please triage th is failure 85
69 Language/12_Expressions/12_Instance_Creation_A01_t08: Fail # co19-roll r607: Ple ase triage this failure 86 # co19 issue #613: @static-warning missing, only runtime behavior is tested
70 Language/12_Expressions/13_Property_Extraction_A02_t02: Fail # co19-roll r607: P lease triage this failure 87 Language/12_Expressions/13_Property_Extraction_A02_t02: Fail, OK
71 Language/12_Expressions/13_Property_Extraction_A04_t02: Fail # co19-roll r607: P lease triage this failure 88 Language/12_Expressions/13_Property_Extraction_A04_t02: Fail, OK
72 Language/12_Expressions/13_Property_Extraction_A04_t03: Fail # co19-roll r607: P lease triage this failure 89 Language/12_Expressions/13_Property_Extraction_A04_t03: Fail, OK
73 Language/12_Expressions/15_Method_Invocation/1_Ordinary_Invocation_A03_t03: Fail # co19-roll r607: Please triage this failure 90 Language/12_Expressions/17_Getter_Invocation_A07_t01: Fail, OK
74 Language/12_Expressions/15_Method_Invocation/1_Ordinary_Invocation_A03_t04: Fail # co19-roll r607: Please triage this failure 91 Language/12_Expressions/17_Getter_Invocation_A07_t02: Fail, OK
75 Language/12_Expressions/15_Method_Invocation/1_Ordinary_Invocation_A04_t04: Fail # co19-roll r607: Please triage this failure 92 Language/12_Expressions/18_Assignment_A01_t07: Fail, OK
76 Language/12_Expressions/15_Method_Invocation/4_Super_Invocation_A02_t05: Fail # co19-roll r607: Please triage this failure 93 Language/12_Expressions/18_Assignment_A04_t09: Fail, OK
77 Language/12_Expressions/16_Getter_Lookup_A02_t05: Fail # co19-roll r607: Please triage this failure 94 LibTest/core/Invocation/isAccessor_A01_t01: Fail, OK
78 Language/12_Expressions/16_Getter_Lookup_A02_t06: Fail # co19-roll r607: Please triage this failure 95 LibTest/core/Invocation/isAccessor_A01_t02: Fail, OK
79 Language/12_Expressions/17_Getter_Invocation_A07_t01: Fail # co19-roll r607: Ple ase triage this failure 96 LibTest/core/Invocation/isGetter_A01_t01: Fail, OK
80 Language/12_Expressions/17_Getter_Invocation_A07_t02: Fail # co19-roll r607: Ple ase triage this failure 97 LibTest/core/Invocation/isGetter_A01_t02: Fail, OK
81 Language/12_Expressions/18_Assignment_A01_t07: Fail # co19-roll r607: Please tri age this failure 98 LibTest/core/Invocation/isMethod_A01_t01: Fail, OK
82 Language/12_Expressions/18_Assignment_A04_t09: Fail # co19-roll r607: Please tri age this failure 99 LibTest/core/Invocation/isMethod_A01_t02: Fail, OK
83 Language/13_Statements/02_Expression_Statements_A01_t13: Fail # co19-roll r607: Please triage this failure 100 LibTest/core/Invocation/isSetter_A01_t01: Fail, OK
84 Language/15_Types/3_Type_Declarations/1_Typedef_A07_t08: Fail # co19-roll r607: Please triage this failure 101 LibTest/core/Invocation/isSetter_A01_t02: Fail, OK
85 Language/15_Types/3_Type_Declarations/1_Typedef_A07_t09: Fail # co19-roll r607: Please triage this failure 102 LibTest/core/Invocation/memberName_A01_t01: Fail, OK
86 LibTest/collection/HasNextIterator/HasNextIterator_A01_t01: Fail # co19-roll r60 7: Please triage this failure 103 LibTest/core/Invocation/namedArguments_A01_t01: Fail, OK
87 LibTest/collection/LinkedHashSet/LinkedHashSet.from_A01_t01: Fail # co19-roll r6 07: Please triage this failure 104 LibTest/core/Invocation/positionalArguments_A01_t01: Fail, OK
88 LibTest/collection/LinkedHashSet/LinkedHashSet_class_A01_t01: Fail # co19-roll r 607: Please triage this failure 105 LibTest/core/Symbol/Symbol_A01_t04: Fail, OK
89 LibTest/collection/LinkedList/LinkedList_A01_t01: Fail # co19-roll r607: Please triage this failure 106
90 LibTest/collection/LinkedList/first_A01_t02: Fail # co19-roll r607: Please triag e this failure 107 # co19 issue #614: abstract class
91 LibTest/collection/LinkedList/reduce_A01_t01: Fail # co19-roll r607: Please tria ge this failure 108 Language/12_Expressions/15_Method_Invocation/1_Ordinary_Invocation_A03_t03: Fail , OK
92 LibTest/core/Invocation/isAccessor_A01_t01: Fail # co19-roll r607: Please triage this failure 109 Language/12_Expressions/15_Method_Invocation/1_Ordinary_Invocation_A03_t04: Fail , OK
93 LibTest/core/Invocation/isAccessor_A01_t02: Fail # co19-roll r607: Please triage this failure 110 Language/12_Expressions/16_Getter_Lookup_A02_t05: Fail, OK
94 LibTest/core/Invocation/isGetter_A01_t01: Fail # co19-roll r607: Please triage t his failure 111 Language/12_Expressions/16_Getter_Lookup_A02_t06: Fail, OK
95 LibTest/core/Invocation/isGetter_A01_t02: Fail # co19-roll r607: Please triage t his failure 112
96 LibTest/core/Invocation/isMethod_A01_t01: Fail # co19-roll r607: Please triage t his failure 113 # co19 issue #615: Expect import missing
97 LibTest/core/Invocation/isMethod_A01_t02: Fail # co19-roll r607: Please triage t his failure 114 Language/12_Expressions/15_Method_Invocation/1_Ordinary_Invocation_A03_t03: Fail , OK
98 LibTest/core/Invocation/isSetter_A01_t01: Fail # co19-roll r607: Please triage t his failure 115 LibTest/collection/LinkedList/LinkedList_A01_t01: Fail, OK
99 LibTest/core/Invocation/isSetter_A01_t02: Fail # co19-roll r607: Please triage t his failure 116
100 LibTest/core/Invocation/memberName_A01_t01: Fail # co19-roll r607: Please triage this failure 117 # co19 issue #616: X required argument(s) expected, but Y found
101 LibTest/core/Invocation/namedArguments_A01_t01: Fail # co19-roll r607: Please tr iage this failure 118 Language/12_Expressions/15_Method_Invocation/1_Ordinary_Invocation_A04_t04: Fail , OK
102 LibTest/core/Invocation/positionalArguments_A01_t01: Fail # co19-roll r607: Plea se triage this failure 119 Language/12_Expressions/15_Method_Invocation/4_Super_Invocation_A02_t05: Fail, O K
103 LibTest/core/RuneIterator/currentAsString_A01_t02: Fail # co19-roll r607: Please triage this failure 120
104 LibTest/core/RuneIterator/current_A01_t02: Fail # co19-roll r607: Please triage this failure 121 # co19 issue #617: "hasNext" is not a function; "Expec"
105 LibTest/core/Runes/isEmpty_A01_t02: Fail # co19-roll r607: Please triage this fa ilure 122 LibTest/collection/HasNextIterator/HasNextIterator_A01_t01: Fail, OK
106 LibTest/core/Runes/isNotEmpty_A01_t02: Fail # co19-roll r607: Please triage this failure 123
107 LibTest/core/Runes/lastWhere_A02_t01: Fail # co19-roll r607: Please triage this failure 124 # co19 issue #618: Just a mess - mix of Map and Set
108 LibTest/core/Runes/length_A01_t02: Fail # co19-roll r607: Please triage this fai lure 125 LibTest/collection/LinkedHashSet/LinkedHashSet.from_A01_t01: Fail, OK
109 LibTest/core/Symbol/Symbol_A01_t04: Fail # co19-roll r607: Please triage this fa ilure 126 LibTest/collection/LinkedHashSet/LinkedHashSet_class_A01_t01: Fail, OK
127 LibTest/collection/LinkedList/first_A01_t02: Fail, OK
128
129 # co19 issue #619: 1 required argument(s) expected, but 0 found
130 LibTest/collection/LinkedList/reduce_A01_t01: Fail, OK
131
132 # co19 issue #620: The name 'NoSuchMethoError' is not a type and cannot be used in an on-catch clause
133 LibTest/core/RuneIterator/currentAsString_A01_t02: Fail, OK
134 LibTest/core/RuneIterator/current_A01_t02: Fail, OK
135 LibTest/core/Runes/length_A01_t02: Fail, OK
136
137 # co19 issue #621: Undefined name 'runes'
138 LibTest/core/Runes/isEmpty_A01_t02: Fail, OK
139 LibTest/core/Runes/isNotEmpty_A01_t02: Fail, OK
140
141 # co19 issue #622: Undefined class 'Int16List.fromList'
142 LibTest/core/Runes/lastWhere_A02_t01: Fail, OK
143
144 # co19 issue #623: main() { {}; } is block and empty statement, not a map
145 Language/13_Statements/02_Expression_Statements_A01_t13: Fail, OK
OLDNEW
« no previous file with comments | « pkg/analyzer_experimental/test/generated/scanner_test.dart ('k') | tests/corelib/corelib.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698