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

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

Issue 18097002: Triage the rest of the co19. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 5 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
7 # not clear: may be assignment in the constructor is warning, not error
6 Language/05_Variables/05_Variables_A05_t04: fail 8 Language/05_Variables/05_Variables_A05_t04: fail
9
10 # func(final x())
7 Language/06_Functions/2_Formal_Parameters/1_Required_Formals_A02_t06: fail 11 Language/06_Functions/2_Formal_Parameters/1_Required_Formals_A02_t06: fail
12
13 # func(var x())
8 Language/06_Functions/2_Formal_Parameters/1_Required_Formals_A02_t07: fail 14 Language/06_Functions/2_Formal_Parameters/1_Required_Formals_A02_t07: fail
15
16 # void func({var _x}) {}
9 Language/06_Functions/2_Formal_Parameters/2_Optional_Formals_A03_t03: fail 17 Language/06_Functions/2_Formal_Parameters/2_Optional_Formals_A03_t03: fail
18
19 # not clear: g([var foo = foo + 10]) is parameter 'foo' in the scope of its own initialzer?
10 Language/06_Functions/2_Formal_Parameters_A02_t02: fail 20 Language/06_Functions/2_Formal_Parameters_A02_t02: fail
21
22 # not clear: null..[1](1)[2](2).foo(3, bar: 4)=5 - it seems that verything befor e =5 it not assignable
11 Language/07_Classes/6_Constructors/1_Generative_Constructors_A04_t15: fail 23 Language/07_Classes/6_Constructors/1_Generative_Constructors_A04_t15: fail
24
25 # not initialized final instance variable, should be static warning
12 Language/07_Classes/6_Constructors/1_Generative_Constructors_A09_t01: fail 26 Language/07_Classes/6_Constructors/1_Generative_Constructors_A09_t01: fail
27
28 # invalid argument for constant constructor
13 Language/07_Classes/6_Constructors/3_Constant_Constructors_A05_t02: fail 29 Language/07_Classes/6_Constructors/3_Constant_Constructors_A05_t02: fail
14 Language/11_Expressions/01_Constants_A16_t01: fail
15 Language/11_Expressions/01_Constants_A16_t02: fail
16 Language/11_Expressions/01_Constants_A16_t03: fail 30 Language/11_Expressions/01_Constants_A16_t03: fail
31
32 # final instance variable created instance of the enclosing class
17 Language/11_Expressions/01_Constants_A17_t03: fail 33 Language/11_Expressions/01_Constants_A17_t03: fail
34
35 # \<newline> in multiline string
18 Language/11_Expressions/05_Strings_A02_t46: fail 36 Language/11_Expressions/05_Strings_A02_t46: fail
19 Language/11_Expressions/05_Strings_A02_t48: fail 37 Language/11_Expressions/05_Strings_A02_t48: fail
38
39 # <dynamic> vs. type variable
20 Language/11_Expressions/11_Instance_Creation/1_New_A13_t02: fail 40 Language/11_Expressions/11_Instance_Creation/1_New_A13_t02: fail
41
42 # type variable bounds violation in constant, will cause runtime exception, so s hould be compile-time error
21 Language/11_Expressions/11_Instance_Creation_A05_t02: fail 43 Language/11_Expressions/11_Instance_Creation_A05_t02: fail
44
45 # 1 == 2 == 3 - equality expressions cannot be operands of another equality expr ession
22 Language/11_Expressions/22_Equality_A01_t15: fail 46 Language/11_Expressions/22_Equality_A01_t15: fail
23 Language/11_Expressions/22_Equality_A01_t16: fail 47 Language/11_Expressions/22_Equality_A01_t16: fail
24 Language/13_Libraries_and_Scripts/1_Imports_A05_t01: fail 48
25 Language/13_Libraries_and_Scripts/5_URIs_A01_t24: fail 49 # typedef self-reference without class declartion in chain
26 Language/13_Libraries_and_Scripts/5_URIs_A01_t25: fail
27 Language/14_Types/3_Type_Declarations/1_Typedef_A07_t01: fail 50 Language/14_Types/3_Type_Declarations/1_Typedef_A07_t01: fail
28 Language/14_Types/3_Type_Declarations/1_Typedef_A07_t02: fail 51 Language/14_Types/3_Type_Declarations/1_Typedef_A07_t02: fail
29 Language/14_Types/3_Type_Declarations/1_Typedef_A07_t03: fail 52 Language/14_Types/3_Type_Declarations/1_Typedef_A07_t03: fail
30 Language/14_Types/3_Type_Declarations/1_Typedef_A07_t04: fail 53 Language/14_Types/3_Type_Declarations/1_Typedef_A07_t04: fail
54
55 # WHITESPACE: ('\t' | ' ' | NEWLINE)+
31 Language/15_Reference/1_Lexical_Rules/1_Reserved_Words_A40_t04: fail 56 Language/15_Reference/1_Lexical_Rules/1_Reserved_Words_A40_t04: fail
32 Language/15_Reference/1_Lexical_Rules_A02_t06: fail 57 Language/15_Reference/1_Lexical_Rules_A02_t06: fail
33 58
34 # analyzer problem: forward reference of typedef with type parameters 59 # analyzer problem: forward reference of typedef with type parameters
35 Language/13_Libraries_and_Scripts/3_Parts_A02_t03: skip 60 Language/13_Libraries_and_Scripts/3_Parts_A02_t03: skip
36 61
62
63
64
37 # co19 issue #380, Strings class has been removed 65 # co19 issue #380, Strings class has been removed
38 LibTest/core/RegExp/Pattern_semantics/firstMatch_CharacterClassEscape_A03_t01: f ail, OK 66 LibTest/core/RegExp/Pattern_semantics/firstMatch_CharacterClassEscape_A03_t01: f ail, OK
39 LibTest/core/RegExp/Pattern_semantics/firstMatch_CharacterClassEscape_A04_t01: f ail, OK 67 LibTest/core/RegExp/Pattern_semantics/firstMatch_CharacterClassEscape_A04_t01: f ail, OK
40 68
41 # co19 issue #382, Deprecated parts of String interface is being removed. 69 # co19 issue #382, Deprecated parts of String interface is being removed.
42 LibTest/core/String/charCodes_A01_t01: fail, OK 70 LibTest/core/String/charCodes_A01_t01: fail, OK
43 LibTest/core/String/charCodeAt_A02_t01: fail, OK 71 LibTest/core/String/charCodeAt_A02_t01: fail, OK
44 LibTest/core/String/charCodeAt_A03_t01: fail, OK 72 LibTest/core/String/charCodeAt_A03_t01: fail, OK
45 LibTest/core/String/charCodeAt_A01_t01: fail, OK 73 LibTest/core/String/charCodeAt_A01_t01: fail, OK
46 LibTest/core/String/splitChars_A01_t01: fail, OK 74 LibTest/core/String/splitChars_A01_t01: fail, OK
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 214
187 # co19 issue #434, argument definition was dropped 215 # co19 issue #434, argument definition was dropped
188 Language/11_Expressions/33_Argument_Definition_Test_A01_t14: fail, OK 216 Language/11_Expressions/33_Argument_Definition_Test_A01_t14: fail, OK
189 Language/11_Expressions/33_Argument_Definition_Test_A01_t18: fail, OK 217 Language/11_Expressions/33_Argument_Definition_Test_A01_t18: fail, OK
190 218
191 # co19 issue #435, AssertioError has not properties 219 # co19 issue #435, AssertioError has not properties
192 LibTest/core/AssertionError/column_A01_t02: fail, OK 220 LibTest/core/AssertionError/column_A01_t02: fail, OK
193 LibTest/core/AssertionError/failedAssertion_A01_t01: fail, OK 221 LibTest/core/AssertionError/failedAssertion_A01_t01: fail, OK
194 LibTest/core/AssertionError/line_A01_t02: fail, OK 222 LibTest/core/AssertionError/line_A01_t02: fail, OK
195 LibTest/core/AssertionError/url_A01_t01: fail, OK 223 LibTest/core/AssertionError/url_A01_t01: fail, OK
224
225 # co19 issue 438, Static variables are initialized lazily, need not be constants
226 Language/11_Expressions/01_Constants_A16_t01: fail, OK
227 Language/11_Expressions/01_Constants_A16_t02: fail, OK
228
229 # co19 issue 439, it is warning, not error to import two different libraries wit h the same name
230 Language/13_Libraries_and_Scripts/1_Imports_A05_t01: fail, OK
231
232 # co19 issue #440, adj strings is not a string interpolation
233 Language/13_Libraries_and_Scripts/5_URIs_A01_t24: fail, OK
234 Language/13_Libraries_and_Scripts/5_URIs_A01_t25: fail, OK
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698