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

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

Issue 243263004: New analyzer snapshot. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 8 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 6
7 LibTest/core/RegExp/firstMatch_A01_t01: Fail 7 LibTest/core/RegExp/firstMatch_A01_t01: Fail
8 8
9 # invalid argument for constant constructor 9 # invalid argument for constant constructor
10 Language/07_Classes/6_Constructors/3_Constant_Constructors_A05_t02: fail 10 Language/07_Classes/6_Constructors/3_Constant_Constructors_A05_t02: fail
11 11
12 # TBD: should we check that argument for dynamic parameter of constant construct or is not compatible with operation that is performed with it? 12 # TBD: should we check that argument for dynamic parameter of constant construct or is not compatible with operation that is performed with it?
13 Language/12_Expressions/01_Constants_A16_t03: fail 13 Language/12_Expressions/01_Constants_A16_t03: fail
14 14
15 # TBF: infinite look: class A {const A();final m = const A();} 15 # TBF: infinite look: class A {const A();final m = const A();}
16 Language/12_Expressions/01_Constants_A17_t03: fail 16 Language/12_Expressions/01_Constants_A17_t03: fail
17 17
18 # 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 Language/13_Statements/04_Local_Function_Declaration_A04_t02: Fail # co19-roll r 641: Please triage this failure
20
21 # TBF: when we override "foo([x = 0]) {}" with "foo([x]) {}" we should report wa rning - different default value 18 # TBF: when we override "foo([x = 0]) {}" with "foo([x]) {}" we should report wa rning - different default value
22 Language/07_Classes/1_Instance_Methods_A04_t02: MissingStaticWarning 19 Language/07_Classes/1_Instance_Methods_A04_t02: MissingStaticWarning
23 Language/07_Classes/4_Abstract_Instance_Members_A07_t04: MissingStaticWarning 20 Language/07_Classes/4_Abstract_Instance_Members_A07_t04: MissingStaticWarning
24 21
25 # TBF: Static members should not be accessible via subclasses. 22 # TBF: Static members should not be accessible via subclasses.
26 Language/07_Classes/9_Superclasses/1_Inheritance_and_Overriding_A01_t05: Missing StaticWarning 23 Language/07_Classes/9_Superclasses/1_Inheritance_and_Overriding_A01_t05: Missing StaticWarning
27 24
28 # co19 issue #442, undefined name "Expect" 25 # co19 issue #442, undefined name "Expect"
29 Language/15_Types/4_Interface_Types_A08_t03: fail, OK 26 Language/15_Types/4_Interface_Types_A08_t03: fail, OK
30 27
31 # co19 issue #455, undeclared identifier is static warning
32 Language/12_Expressions/14_Function_Invocation/3_Unqualified_Invocation_A01_t10: fail, OK
33 Language/14_Libraries_and_Scripts/1_Imports_A02_t12: fail, OK
34 Language/14_Libraries_and_Scripts/1_Imports_A02_t15: fail, OK
35
36 # co19 issue #438, Static variables are initialized lazily, need not be constant s 28 # co19 issue #438, Static variables are initialized lazily, need not be constant s
37 Language/12_Expressions/01_Constants_A16_t01: fail, OK 29 Language/12_Expressions/01_Constants_A16_t01: fail, OK
38 Language/12_Expressions/01_Constants_A16_t02: fail, OK 30 Language/12_Expressions/01_Constants_A16_t02: fail, OK
39 31
40 # co19 issue #454 (wrongly closed)
41 Language/12_Expressions/12_Instance_Creation/1_New_A01_t04: fail, OK
42
43 # co19 issue #543: invocation of a non-function 32 # co19 issue #543: invocation of a non-function
44 Language/12_Expressions/14_Function_Invocation/4_Function_Expression_Invocation_ A03_t02: fail, OK 33 Language/12_Expressions/14_Function_Invocation/4_Function_Expression_Invocation_ A03_t02: fail, OK
45 34
46 # co19 issue #564: URI can be any number adjacent string literals 35 # co19 issue #564: URI can be any number adjacent string literals
47 Language/14_Libraries_and_Scripts/5_URIs_A01_t24: fail, OK 36 Language/14_Libraries_and_Scripts/5_URIs_A01_t24: fail, OK
48 Language/14_Libraries_and_Scripts/5_URIs_A01_t25: fail, OK 37 Language/14_Libraries_and_Scripts/5_URIs_A01_t25: fail, OK
49 38
50 # co19 issue #615: Expect import missing 39 # co19 issue #615: Expect import missing
51 LibTest/collection/LinkedList/LinkedList_A01_t01: Fail, OK 40 LibTest/collection/LinkedList/LinkedList_A01_t01: Fail, OK
52 41
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 Language/13_Statements/09_Switch_A10_t03: MissingStaticWarning 98 Language/13_Statements/09_Switch_A10_t03: MissingStaticWarning
110 Language/13_Statements/15_Assert_A04_t04: MissingStaticWarning 99 Language/13_Statements/15_Assert_A04_t04: MissingStaticWarning
111 100
112 Language/05_Variables/05_Variables_A05_t04: MissingCompileTimeError # co19-roll r651: Please triage this failure 101 Language/05_Variables/05_Variables_A05_t04: MissingCompileTimeError # co19-roll r651: Please triage this failure
113 Language/05_Variables/05_Variables_A05_t05: MissingCompileTimeError # co19-roll r651: Please triage this failure 102 Language/05_Variables/05_Variables_A05_t05: MissingCompileTimeError # co19-roll r651: Please triage this failure
114 Language/05_Variables/05_Variables_A05_t06: MissingCompileTimeError # co19-roll r651: Please triage this failure 103 Language/05_Variables/05_Variables_A05_t06: MissingCompileTimeError # co19-roll r651: Please triage this failure
115 Language/05_Variables/05_Variables_A05_t07: MissingCompileTimeError # co19-roll r651: Please triage this failure 104 Language/05_Variables/05_Variables_A05_t07: MissingCompileTimeError # co19-roll r651: Please triage this failure
116 Language/05_Variables/05_Variables_A06_t01: MissingCompileTimeError # co19-roll r651: Please triage this failure 105 Language/05_Variables/05_Variables_A06_t01: MissingCompileTimeError # co19-roll r651: Please triage this failure
117 Language/05_Variables/05_Variables_A06_t02: MissingCompileTimeError # co19-roll r651: Please triage this failure 106 Language/05_Variables/05_Variables_A06_t02: MissingCompileTimeError # co19-roll r651: Please triage this failure
118 Language/05_Variables/05_Variables_A06_t03: MissingCompileTimeError # co19-roll r651: Please triage this failure 107 Language/05_Variables/05_Variables_A06_t03: MissingCompileTimeError # co19-roll r651: Please triage this failure
119 Language/12_Expressions/14_Function_Invocation/3_Unqualified_Invocation_A01_t13: CompileTimeError # co19-roll r651: Please triage this failure
120 Language/12_Expressions/14_Function_Invocation/3_Unqualified_Invocation_A01_t17: MissingCompileTimeError # co19-roll r651: Please triage this failure 108 Language/12_Expressions/14_Function_Invocation/3_Unqualified_Invocation_A01_t17: MissingCompileTimeError # co19-roll r651: Please triage this failure
121 Language/12_Expressions/14_Function_Invocation/3_Unqualified_Invocation_A01_t18: MissingCompileTimeError # co19-roll r651: Please triage this failure 109 Language/12_Expressions/14_Function_Invocation/3_Unqualified_Invocation_A01_t18: MissingCompileTimeError # co19-roll r651: Please triage this failure
122 110
123 Language/07_Classes/10_Superinterfaces_A07_t05: StaticWarning # co19-roll r667: Please triage this failure 111 Language/07_Classes/10_Superinterfaces_A07_t05: StaticWarning # co19-roll r667: Please triage this failure
124 LibTest/convert/JsonEncoder/JsonEncoder_A01_t01: StaticWarning # co19-roll r667: Please triage this failure 112 LibTest/convert/JsonEncoder/JsonEncoder_A01_t01: StaticWarning # co19-roll r667: Please triage this failure
125 113
126 # co19 issue 656 114 # co19 issue 656
127 LibTest/typed_data/Float32x4/equal_A01_t01: Skip # co19 issue 656 115 LibTest/typed_data/Float32x4/equal_A01_t01: Skip # co19 issue 656
128 LibTest/typed_data/Float32x4/notEqual_A01_t01: Skip # co19 issue 656 116 LibTest/typed_data/Float32x4/notEqual_A01_t01: Skip # co19 issue 656
129 LibTest/typed_data/Float32x4/greaterThan_A01_t01: Skip # co19 issue 656 117 LibTest/typed_data/Float32x4/greaterThan_A01_t01: Skip # co19 issue 656
130 LibTest/typed_data/Float32x4/greaterThanOrEqual_A01_t01: Skip # co19 issue 656 118 LibTest/typed_data/Float32x4/greaterThanOrEqual_A01_t01: Skip # co19 issue 656
131 LibTest/typed_data/Float32x4/lessThan_A01_t01: Skip # co19 issue 656 119 LibTest/typed_data/Float32x4/lessThan_A01_t01: Skip # co19 issue 656
132 LibTest/typed_data/Float32x4/lessThanOrEqual_A01_t01: Skip # co19 issue 656 120 LibTest/typed_data/Float32x4/lessThanOrEqual_A01_t01: Skip # co19 issue 656
133 121
134 WebPlatformTest1/shadow-dom/*: CompileTimeError # co19 issue 677 122 WebPlatformTest1/shadow-dom/*: StaticWarning # co19 issue 677
135 WebPlatformTest1/html-templates/*: CompileTimeError # co19 issue 677 123 WebPlatformTest1/html-templates/*: StaticWarning # co19 issue 677
136 WebPlatformTest1/custom-elements/*: Pass, StaticWarning # Issue 18095. 124 WebPlatformTest1/custom-elements/*: Pass, StaticWarning # Issue 18095.
137 125
138 # co19 roll to r706: Please triage all these issues. 126 # co19 roll to r706: Please triage all these issues.
139 Language/12_Expressions/15_Method_Invocation/4_Super_Invocation_A06_t03: StaticW arning # co19-roll r706: Please triage this failure. 127 Language/12_Expressions/15_Method_Invocation/4_Super_Invocation_A06_t03: StaticW arning # co19-roll r706: Please triage this failure.
140 Language/12_Expressions/15_Method_Invocation/4_Super_Invocation_A06_t04: StaticW arning # co19-roll r706: Please triage this failure. 128 Language/12_Expressions/15_Method_Invocation/4_Super_Invocation_A06_t04: StaticW arning # co19-roll r706: Please triage this failure.
141 Language/12_Expressions/15_Method_Invocation/4_Super_Invocation_A06_t05: StaticW arning # co19-roll r706: Please triage this failure. 129 Language/12_Expressions/15_Method_Invocation/4_Super_Invocation_A06_t05: StaticW arning # co19-roll r706: Please triage this failure.
142 Language/14_Libraries_and_Scripts/3_Parts_A02_t04: CompileTimeError # co19-roll r706: Please triage this failure. 130 Language/14_Libraries_and_Scripts/3_Parts_A02_t04: CompileTimeError # co19-roll r706: Please triage this failure.
143 Language/14_Libraries_and_Scripts/3_Parts_A04_t01: CompileTimeError # co19-roll r706: Please triage this failure. 131 Language/14_Libraries_and_Scripts/3_Parts_A04_t01: CompileTimeError # co19-roll r706: Please triage this failure.
144 Language/14_Libraries_and_Scripts/4_Scripts_A01_t16: CompileTimeError # co19-rol l r706: Please triage this failure. 132 Language/14_Libraries_and_Scripts/4_Scripts_A01_t16: CompileTimeError # co19-rol l r706: Please triage this failure.
145 LayoutTests/fast/dom/DOMImplementation/createDocument-namespace-err_t01: StaticW arning # co19-roll r706: Please triage this failure. 133 LayoutTests/fast/dom/DOMImplementation/createDocument-namespace-err_t01: StaticW arning # co19-roll r706: Please triage this failure.
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 LibTest/html/Window/requestFileSystem_A02_t01: StaticWarning # co19-roll r706: P lease triage this failure. 165 LibTest/html/Window/requestFileSystem_A02_t01: StaticWarning # co19-roll r706: P lease triage this failure.
178 LibTest/html/Window/resizeBy_A01_t01: StaticWarning # co19-roll r706: Please tri age this failure. 166 LibTest/html/Window/resizeBy_A01_t01: StaticWarning # co19-roll r706: Please tri age this failure.
179 LibTest/html/Window/resizeTo_A01_t01: StaticWarning # co19-roll r706: Please tri age this failure. 167 LibTest/html/Window/resizeTo_A01_t01: StaticWarning # co19-roll r706: Please tri age this failure.
180 LibTest/isolate/ReceivePort/sendPort_A01_t01: StaticWarning # co19-roll r706: Pl ease triage this failure. 168 LibTest/isolate/ReceivePort/sendPort_A01_t01: StaticWarning # co19-roll r706: Pl ease triage this failure.
181 LibTest/math/Point/operator_addition_A02_t01: StaticWarning # co19-roll r706: Pl ease triage this failure. 169 LibTest/math/Point/operator_addition_A02_t01: StaticWarning # co19-roll r706: Pl ease triage this failure.
182 LibTest/math/Point/operator_mult_A03_t01: StaticWarning # co19-roll r706: Please triage this failure. 170 LibTest/math/Point/operator_mult_A03_t01: StaticWarning # co19-roll r706: Please triage this failure.
183 LibTest/math/Point/operator_subtraction_A02_t01: StaticWarning # co19-roll r706: Please triage this failure. 171 LibTest/math/Point/operator_subtraction_A02_t01: StaticWarning # co19-roll r706: Please triage this failure.
184 WebPlatformTest/dom/events/event_constants/constants_A01_t01: StaticWarning # co 19-roll r706: Please triage this failure. 172 WebPlatformTest/dom/events/event_constants/constants_A01_t01: StaticWarning # co 19-roll r706: Please triage this failure.
185 WebPlatformTest/dom/events/event_constructors/Event_A01_t01: StaticWarning # co1 9-roll r706: Please triage this failure. 173 WebPlatformTest/dom/events/event_constructors/Event_A01_t01: StaticWarning # co1 9-roll r706: Please triage this failure.
186 WebPlatformTest/dom/events/event_constructors/Event_A02_t01: StaticWarning # co1 9-roll r706: Please triage this failure. 174 WebPlatformTest/dom/events/event_constructors/Event_A02_t01: StaticWarning # co1 9-roll r706: Please triage this failure.
OLDNEW
« no previous file with comments | « pkg/analyzer/test/services/formatter_test.dart ('k') | tests/language/language_analyzer2.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698