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

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

Issue 2260693002: Implement parsing support for generic functions (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Cleanup Created 4 years, 4 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') | « tests/language/generic_sends_test.dart ('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 [ ($compiler == none || $compiler == precompiler || $compiler == dart2app || $co mpiler == dart2appjit) ] 8 [ ($compiler == none || $compiler == precompiler || $compiler == dart2app || $co mpiler == dart2appjit) ]
9 tearoff_constructor_basic_test: Skip # Crashes in checked mode -- hausner invest igating 9 tearoff_constructor_basic_test: Skip # Crashes in checked mode -- hausner invest igating
10 10
(...skipping 27 matching lines...) Expand all
38 # Non-contractive types are not supported in the vm. 38 # Non-contractive types are not supported in the vm.
39 cyclic_type_test/02: Fail, OK 39 cyclic_type_test/02: Fail, OK
40 cyclic_type_test/04: Fail, OK 40 cyclic_type_test/04: Fail, OK
41 cyclic_type2_test: Fail, OK 41 cyclic_type2_test: Fail, OK
42 least_upper_bound_expansive_test/*: Fail, OK 42 least_upper_bound_expansive_test/*: Fail, OK
43 43
44 async_star_regression_2238_test: CompileTimeError, RuntimeError # drt only runti me-errs. 44 async_star_regression_2238_test: CompileTimeError, RuntimeError # drt only runti me-errs.
45 async_star_cancel_while_paused_test: RuntimeError 45 async_star_cancel_while_paused_test: RuntimeError
46 46
47 # Experimental feature: Syntactic support for generic methods. 47 # Experimental feature: Syntactic support for generic methods.
48 generic_methods_test: CompiletimeError # Issue 25869 48 generic_methods_type_expression_test: RuntimeError # Issue 25869
49 generic_functions_test: CompiletimeError # Issue 25869
50 generic_local_functions_test: CompiletimeError # Issue 25869
51 generic_sends_test: CompiletimeError # Issue 25869
52 generic_methods_new_test: CompiletimeError # Issue 25869
53 generic_methods_function_type_test: CompiletimeError # Issue 25869
54 generic_methods_type_expression_test: CompiletimeError # Issue 25869
55 49
56 [ ($compiler == none || $compiler == precompiler || $compiler == dart2app || $co mpiler == dart2appjit) && ($runtime == vm || $runtime == dart_precompiled || $ru ntime == dart_app) ] 50 [ ($compiler == none || $compiler == precompiler || $compiler == dart2app || $co mpiler == dart2appjit) && ($runtime == vm || $runtime == dart_precompiled || $ru ntime == dart_app) ]
57 51
58 class_keyword_test/02: MissingCompileTimeError # Issue 13627 52 class_keyword_test/02: MissingCompileTimeError # Issue 13627
59 unicode_bom_test: Fail # Issue 16067 53 unicode_bom_test: Fail # Issue 16067
60 vm/debug_break_enabled_vm_test/01: Crash, OK # Expected to hit breakpoint. 54 vm/debug_break_enabled_vm_test/01: Crash, OK # Expected to hit breakpoint.
61 try_catch_optimized1_test: Skip # Srdjan investigating 55 try_catch_optimized1_test: Skip # Srdjan investigating
62 56
63 [ ($compiler == none || $compiler == precompiler || $compiler == dart2app || $co mpiler == dart2appjit) && $checked ] 57 [ ($compiler == none || $compiler == precompiler || $compiler == dart2app || $co mpiler == dart2appjit) && $checked ]
64 type_variable_bounds4_test/01: Fail # Issue 14006 58 type_variable_bounds4_test/01: Fail # Issue 14006
(...skipping 28 matching lines...) Expand all
93 mirror_in_static_init_test: Fail # Issue 22071 87 mirror_in_static_init_test: Fail # Issue 22071
94 vm/debug_break_enabled_vm_test/*: Skip # Issue 14651. 88 vm/debug_break_enabled_vm_test/*: Skip # Issue 14651.
95 89
96 # These tests need the flag --initializing-formal-access to pass: 90 # These tests need the flag --initializing-formal-access to pass:
97 initializing_formal_access_test: Skip 91 initializing_formal_access_test: Skip
98 initializing_formal_capture_test: Skip 92 initializing_formal_capture_test: Skip
99 initializing_formal_final_test: Skip 93 initializing_formal_final_test: Skip
100 initializing_formal_type_test: Skip 94 initializing_formal_type_test: Skip
101 95
102 # Experimental feature: Syntactic support for generic methods. 96 # Experimental feature: Syntactic support for generic methods.
103 generic_methods_test: RuntimeError # Issue 25869 97 # Skip these in dartium, because the test framework can't pass VM flags to
104 generic_functions_test: RuntimeError # Issue 25869 98 generic_methods_test: Skip # Issue 25869
105 generic_local_functions_test: RuntimeError # Issue 25869 99 generic_functions_test: Skip # Issue 25869
106 generic_sends_test: RuntimeError # Issue 25869 100 generic_local_functions_test: Skip # Issue 25869
107 generic_methods_new_test: RuntimeError # Issue 25869 101 generic_sends_test: Skip # Issue 25869
108 generic_methods_function_type_test: RuntimeError # Issue 25869 102 generic_methods_new_test: Skip # Issue 25869
109 generic_methods_type_expression_test: RuntimeError # Issue 25869 103 generic_methods_function_type_test: Skip # Issue 25869
104 generic_methods_type_expression_test: Skip # Issue 25869
110 105
111 config_import_test: Skip # Issue 26250 106 config_import_test: Skip # Issue 26250
112 107
113 [ $compiler == none && $runtime == dartium && $system == linux && $arch != x64 ] 108 [ $compiler == none && $runtime == dartium && $system == linux && $arch != x64 ]
114 issue_22780_test/01: Pass, Timeout # Issue 24473 109 issue_22780_test/01: Pass, Timeout # Issue 24473
115 110
116 [ $compiler == none && $runtime == dartium && $system == linux && $arch == x64 ] 111 [ $compiler == none && $runtime == dartium && $system == linux && $arch == x64 ]
117 async_await_test: Skip # Issue 26198 112 async_await_test: Skip # Issue 26198
118 113
119 [ $compiler == none && $runtime == drt ] 114 [ $compiler == none && $runtime == drt ]
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
267 deferred_regression_22995_test: Crash # Requires deferred libraries 262 deferred_regression_22995_test: Crash # Requires deferred libraries
268 deferred_shadow_load_library_test: Crash # Requires deferred libraries 263 deferred_shadow_load_library_test: Crash # Requires deferred libraries
269 deferred_shared_and_unshared_classes_test: Crash # Requires deferred libraries 264 deferred_shared_and_unshared_classes_test: Crash # Requires deferred libraries
270 deferred_static_seperate_test: Crash # Requires deferred libraries 265 deferred_static_seperate_test: Crash # Requires deferred libraries
271 deferred_super_dependency_test: Pass, Crash # Requires deferred libraries 266 deferred_super_dependency_test: Pass, Crash # Requires deferred libraries
272 deferred_type_dependency_test: Crash # Requires deferred libraries 267 deferred_type_dependency_test: Crash # Requires deferred libraries
273 issue_1751477_test: Crash # Requires deferred libraries 268 issue_1751477_test: Crash # Requires deferred libraries
274 regress_23408_test: Crash # Requires deferred libraries 269 regress_23408_test: Crash # Requires deferred libraries
275 regress_22443_test: Crash # Requires deferred libraries 270 regress_22443_test: Crash # Requires deferred libraries
276 tearoff_basic_test: Crash # Requires deferred libraries 271 tearoff_basic_test: Crash # Requires deferred libraries
OLDNEW
« runtime/vm/parser.cc ('K') | « tests/language/generic_sends_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698