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

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

Issue 2059883002: Implementation of modified scoping for initializing formals. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 4 years, 6 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
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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_test: CompiletimeError # Issue 25869
49 generic_functions_test: CompiletimeError # Issue 25869 49 generic_functions_test: CompiletimeError # Issue 25869
50 generic_local_functions_test: CompiletimeError # Issue 25869 50 generic_local_functions_test: CompiletimeError # Issue 25869
51 generic_sends_test: CompiletimeError # Issue 25869 51 generic_sends_test: CompiletimeError # Issue 25869
52 generic_methods_new_test: CompiletimeError # Issue 25869 52 generic_methods_new_test: CompiletimeError # Issue 25869
53 generic_methods_function_type_test: CompiletimeError # Issue 25869 53 generic_methods_function_type_test: CompiletimeError # Issue 25869
54 generic_methods_type_expression_test: CompiletimeError # Issue 25869 54 generic_methods_type_expression_test: CompiletimeError # Issue 25869
55 55
56 # Experimental feature: Use initializing formals in initializers and constructor body. 56 # Experimental feature: Use initializing formals in initializers and constructor body.
57 initializing_formal_access_test: CompiletimeError # TODO(eernst): Create a suita ble sdk issue. 57 initializing_formal_access_test: CompiletimeError # Issue 26656
58 initializing_formal_capture_test: CompiletimeError # TODO(eernst): Create a suit able sdk issue. 58 initializing_formal_capture_test: CompiletimeError # Issue 26656
59 initializing_formal_final_test: CompiletimeError # TODO(eernst): Create a suitab le sdk issue. 59 initializing_formal_final_test: CompiletimeError # Issue 26656
60 initializing_formal_type_test: CompiletimeError # TODO(eernst): Create a suitabl e sdk issue. 60 initializing_formal_type_test: CompiletimeError # Issue 26656
61 61
62 [ ($compiler == none || $compiler == precompiler || $compiler == dart2app || $co mpiler == dart2appjit) && ($runtime == vm || $runtime == dart_precompiled || $ru ntime == dart_app) ] 62 [ ($compiler == none || $compiler == precompiler || $compiler == dart2app || $co mpiler == dart2appjit) && ($runtime == vm || $runtime == dart_precompiled || $ru ntime == dart_app) ]
63 63
64 class_keyword_test/02: MissingCompileTimeError # Issue 13627 64 class_keyword_test/02: MissingCompileTimeError # Issue 13627
65 unicode_bom_test: Fail # Issue 16067 65 unicode_bom_test: Fail # Issue 16067
66 vm/debug_break_enabled_vm_test/01: Crash, OK # Expected to hit breakpoint. 66 vm/debug_break_enabled_vm_test/01: Crash, OK # Expected to hit breakpoint.
67 try_catch_optimized1_test: Skip # Srdjan investigating 67 try_catch_optimized1_test: Skip # Srdjan investigating
68 68
69 [ ($compiler == none || $compiler == precompiler || $compiler == dart2app || $co mpiler == dart2appjit) && $checked ] 69 [ ($compiler == none || $compiler == precompiler || $compiler == dart2app || $co mpiler == dart2appjit) && $checked ]
70 type_variable_bounds4_test/01: Fail # Issue 14006 70 type_variable_bounds4_test/01: Fail # Issue 14006
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 # Experimental feature: Syntactic support for generic methods. 102 # Experimental feature: Syntactic support for generic methods.
103 generic_methods_test: RuntimeError # Issue 25869 103 generic_methods_test: RuntimeError # Issue 25869
104 generic_functions_test: RuntimeError # Issue 25869 104 generic_functions_test: RuntimeError # Issue 25869
105 generic_local_functions_test: RuntimeError # Issue 25869 105 generic_local_functions_test: RuntimeError # Issue 25869
106 generic_sends_test: RuntimeError # Issue 25869 106 generic_sends_test: RuntimeError # Issue 25869
107 generic_methods_new_test: RuntimeError # Issue 25869 107 generic_methods_new_test: RuntimeError # Issue 25869
108 generic_methods_function_type_test: RuntimeError # Issue 25869 108 generic_methods_function_type_test: RuntimeError # Issue 25869
109 generic_methods_type_expression_test: RuntimeError # Issue 25869 109 generic_methods_type_expression_test: RuntimeError # Issue 25869
110 110
111 # Experimental feature: Use initializing formals in initializers and constructor body. 111 # Experimental feature: Use initializing formals in initializers and constructor body.
112 initializing_formal_access_test: RuntimeError # TODO(eernst): create a suitable sdk issue. 112 initializing_formal_access_test: RuntimeError # Issue 26656
113 initializing_formal_capture_test: RuntimeError # TODO(eernst): create a suitable sdk issue. 113 initializing_formal_capture_test: RuntimeError # Issue 26656
114 initializing_formal_final_test: RuntimeError # TODO(eernst): create a suitable s dk issue. 114 initializing_formal_final_test: RuntimeError # Issue 26656
115 initializing_formal_type_test: RuntimeError # TODO(eernst): create a suitable sd k issue. 115 initializing_formal_type_test: RuntimeError # Issue 26656
116 116
117 config_import_test: Skip # Issue 26250 117 config_import_test: Skip # Issue 26250
118 118
119 [ $compiler == none && $runtime == dartium && $system == linux && $arch != x64 ] 119 [ $compiler == none && $runtime == dartium && $system == linux && $arch != x64 ]
120 issue_22780_test/01: Pass, Timeout # Issue 24473 120 issue_22780_test/01: Pass, Timeout # Issue 24473
121 121
122 [ $compiler == none && $runtime == dartium && $system == linux && $arch == x64 ] 122 [ $compiler == none && $runtime == dartium && $system == linux && $arch == x64 ]
123 async_await_test: Skip # Issue 26198 123 async_await_test: Skip # Issue 26198
124 124
125 [ $compiler == none && $runtime == drt ] 125 [ $compiler == none && $runtime == drt ]
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 # TODO(vegorov) StopInstr is unimplemented. 237 # TODO(vegorov) StopInstr is unimplemented.
238 vm/debug_break_enabled_vm_test/none: Skip 238 vm/debug_break_enabled_vm_test/none: Skip
239 239
240 # TODO(vegorov) Encoding limitation: StoreField bytecode only supports 256 240 # TODO(vegorov) Encoding limitation: StoreField bytecode only supports 256
241 # fields in an object. 241 # fields in an object.
242 large_class_declaration_test: Skip 242 large_class_declaration_test: Skip
243 243
244 [ $compiler == precompiler && $runtime == dart_precompiled && $system == android ] 244 [ $compiler == precompiler && $runtime == dart_precompiled && $system == android ]
245 vm/optimized_guarded_field_isolates_test: Skip # Issue #26373 245 vm/optimized_guarded_field_isolates_test: Skip # Issue #26373
246 issue23244_test: Skip # Issue #26373 246 issue23244_test: Skip # Issue #26373
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698