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

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

Issue 2625823004: Support covariant keyword in the VM parser (Closed)
Patch Set: wip Created 3 years, 11 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
« runtime/vm/parser.cc ('K') | « runtime/vm/token.h ('k') | 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) 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 # This directory contains tests that are intended to show the 5 # This directory contains tests that are intended to show the
6 # current state of the language. 6 # current state of the language.
7 7
8 # These test entries will be valid for vm/dartium (with and without kernel). 8 # These test entries will be valid for vm/dartium (with and without kernel).
9 [ $compiler == none || $compiler == app_jit || $compiler == dartk || $runtime == dart_precompiled ] 9 [ $compiler == none || $compiler == app_jit || $compiler == dartk || $runtime == dart_precompiled ]
10 async_star_cancel_while_paused_test: RuntimeError 10 async_star_cancel_while_paused_test: RuntimeError
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 enum_test: RuntimeError # Issue 28341 46 enum_test: RuntimeError # Issue 28341
47 47
48 dynamic_prefix_core_test/01: RuntimeError # Issue 12478 48 dynamic_prefix_core_test/01: RuntimeError # Issue 12478
49 multiline_strings_test: Fail # Issue 23020 49 multiline_strings_test: Fail # Issue 23020
50 50
51 deferred_redirecting_factory_test: Fail # Issue 23408 51 deferred_redirecting_factory_test: Fail # Issue 23408
52 redirecting_constructor_initializer_test: RuntimeError # Issue 23488 52 redirecting_constructor_initializer_test: RuntimeError # Issue 23488
53 53
54 async_star_regression_2238_test: CompileTimeError, RuntimeError # drt only runti me-errs. 54 async_star_regression_2238_test: CompileTimeError, RuntimeError # drt only runti me-errs.
55 55
56 # Doesn't yet implement `covariant` keyword.
57 covariant_test/06: Fail # Issue 28166
58 covariant_test/06b: Fail # Issue 28166
59 covariant_test/07: Fail # Issue 28166
60 covariant_test/08: Fail # Issue 28166
61 covariant_test/11: Fail # Issue 28166
62 covariant_test/15: Fail # Issue 28166
63 covariant_test/26: Fail # Issue 28166
64 covariant_test/26b: Fail # Issue 28166
65 covariant_test/27: Fail # Issue 28166
66 covariant_test/28: Fail # Issue 28166
67 covariant_test/31: Fail # Issue 28166
68 covariant_test/35: Fail # Issue 28166
69 covariant_test/40: Fail # Issue 28166
70 covariant_test/40b: Fail # Issue 28166
71 covariant_test/42: Fail # Issue 28166
72 covariant_test/46: Fail # Issue 28166
73 covariant_test/46b: Fail # Issue 28166
74 covariant_test/47: Fail # Issue 28166
75 covariant_test/51: Fail # Issue 28166
76 covariant_test/52: Fail # Issue 28166
77 covariant_test/54: Fail # Issue 28166
78 covariant_test/55: Fail # Issue 28166
79 covariant_test/56: Fail # Issue 28166
80 covariant_override_test: Fail # Issue 28166
81
82 [ $compiler == none && ($runtime == dartium || $runtime == drt) && $checked ]
83 covariant_test/06: Pass # Fails at runtime instead of at compile time
84 covariant_test/06b: Pass # Fails at runtime instead of at compile time
85 covariant_test/07: Pass # Fails at runtime instead of at compile time
86 covariant_test/08: Pass # Fails at runtime instead of at compile time
87 covariant_test/11: Pass # Fails at runtime instead of at compile time
88 covariant_test/15: Pass # Fails at runtime instead of at compile time
89 covariant_test/26: Pass # Fails at runtime instead of at compile time
90 covariant_test/26b: Pass # Fails at runtime instead of at compile time
91 covariant_test/27: Pass # Fails at runtime instead of at compile time
92 covariant_test/28: Pass # Fails at runtime instead of at compile time
93 covariant_test/31: Pass # Fails at runtime instead of at compile time
94 covariant_test/35: Pass # Fails at runtime instead of at compile time
95 covariant_test/46: Pass # Fails at runtime instead of at compile time
96 covariant_test/46b: Pass # Fails at runtime instead of at compile time
97 covariant_test/47: Pass # Fails at runtime instead of at compile time
98 covariant_test/51: Pass # Fails at runtime instead of at compile time
99 covariant_test/55: Pass # Fails at runtime instead of at compile time
100
101 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && $ch ecked ] 56 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && $ch ecked ]
102 # These generic functions tests pass for the wrong reason in checked mode, 57 # These generic functions tests pass for the wrong reason in checked mode,
103 # because the parsed type parameters are mapped to dynamic type. 58 # because the parsed type parameters are mapped to dynamic type.
104 generic_methods_function_type_test: Pass # Issue 25869 59 generic_methods_function_type_test: Pass # Issue 25869
105 generic_methods_test: Pass # Issue 25869 60 generic_methods_test: Pass # Issue 25869
106 generic_methods_new_test: Pass # Issue 25869 61 generic_methods_new_test: Pass # Issue 25869
107 generic_local_functions_test: Pass # Issue 25869 62 generic_local_functions_test: Pass # Issue 25869
108 generic_functions_test: Pass # Issue 25869 63 generic_functions_test: Pass # Issue 25869
109 generic_methods_generic_function_parameter_test: Pass # Issue 25869 64 generic_methods_generic_function_parameter_test: Pass # Issue 25869
110 65
111 covariant_test/48: Fail # Issue 28166
112
113 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && ($r untime == vm || $runtime == dart_precompiled) ] 66 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && ($r untime == vm || $runtime == dart_precompiled) ]
114 class_keyword_test/02: MissingCompileTimeError # Issue 13627 67 class_keyword_test/02: MissingCompileTimeError # Issue 13627
115 unicode_bom_test: Fail # Issue 16067 68 unicode_bom_test: Fail # Issue 16067
116 vm/debug_break_enabled_vm_test/01: Crash, OK # Expected to hit breakpoint. 69 vm/debug_break_enabled_vm_test/01: Crash, OK # Expected to hit breakpoint.
117 70
118 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && $ch ecked ] 71 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && $ch ecked ]
119 type_variable_bounds4_test/01: Fail # Issue 14006 72 type_variable_bounds4_test/01: Fail # Issue 14006
120 73
121 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && (($ runtime == vm || $runtime == dart_precompiled) || $runtime == drt || $runtime == dartium) ] 74 [ ($compiler == none || $compiler == precompiler || $compiler == app_jit) && (($ runtime == vm || $runtime == dart_precompiled) || $runtime == drt || $runtime == dartium) ]
122 dynamic_prefix_core_test/none: Fail # Issue 12478 75 dynamic_prefix_core_test/none: Fail # Issue 12478
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
359 vm/optimized_stacktrace_test: Pass, Crash # Issue 28276 312 vm/optimized_stacktrace_test: Pass, Crash # Issue 28276
360 313
361 [$compiler == dart2analyzer] 314 [$compiler == dart2analyzer]
362 vm/regress_27201_test: SkipByDesign # Loads bad library, so will always crash. 315 vm/regress_27201_test: SkipByDesign # Loads bad library, so will always crash.
363 config_import_corelib_test: StaticWarning, OK 316 config_import_corelib_test: StaticWarning, OK
364 317
365 null_bottom_test/none: StaticWarning, CompileTimeError # Issue 28025 318 null_bottom_test/none: StaticWarning, CompileTimeError # Issue 28025
366 null_bottom_test/01: Pass, CompileTimeError # Issue 28025 319 null_bottom_test/01: Pass, CompileTimeError # Issue 28025
367 null_bottom_test/02: Pass, CompileTimeError # Issue 28025 320 null_bottom_test/02: Pass, CompileTimeError # Issue 28025
368 null_bottom_test/03: Pass, CompileTimeError # Issue 28025 321 null_bottom_test/03: Pass, CompileTimeError # Issue 28025
OLDNEW
« runtime/vm/parser.cc ('K') | « runtime/vm/token.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698