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

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

Issue 962603002: Typecheck return with respect to async. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Updated and tested. Created 5 years, 9 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 | « tests/compiler/dart2js/type_checker_test.dart ('k') | tests/language/sync_generator2_test.dart » ('j') | 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 [ $compiler == dart2js ] 5 [ $compiler == dart2js ]
6 syncstar_yield_test/copyParameters: RuntimeError # Issue 22322 6 syncstar_yield_test/copyParameters: RuntimeError # Issue 22322
7 sync_generator2_test/07: MissingCompileTimeError # Issue 22324 7 sync_generator2_test/07: MissingCompileTimeError # Issue 22324
8 sync_generator2_test/08: MissingCompileTimeError # Issue 22324 8 sync_generator2_test/08: MissingCompileTimeError # Issue 22324
9 sync_generator2_test/10: MissingCompileTimeError # Issue 22324 9 sync_generator2_test/10: MissingCompileTimeError # Issue 22324
10 sync_generator2_test/20: MissingCompileTimeError # Issue 22324
11 sync_generator2_test/30: MissingCompileTimeError # Issue 22324
12 sync_generator2_test/51: MissingCompileTimeError # Issue 22324
13 sync_generator2_test/52: MissingCompileTimeError # Issue 22324
14 10
15 [ $compiler == dart2js && $runtime == jsshell ] 11 [ $compiler == dart2js && $runtime == jsshell ]
16 await_for_test: Skip # Jsshell does not provide periodic timers, Issue 7728 12 await_for_test: Skip # Jsshell does not provide periodic timers, Issue 7728
17 13
18 [ $compiler == dart2js && $csp && $browser ] 14 [ $compiler == dart2js && $csp && $browser ]
19 deferred_mixin_test: RuntimeError # Issue 21863 15 deferred_mixin_test: RuntimeError # Issue 21863
20 16
21 [ $compiler == dart2js || $compiler == dart2dart ] 17 [ $compiler == dart2js || $compiler == dart2dart ]
22 symbol_literal_test/*: Fail # Issue 21825 18 symbol_literal_test/*: Fail # Issue 21825
23 constructor_duplicate_final_test/01: Fail # Issue 13363 19 constructor_duplicate_final_test/01: Fail # Issue 13363
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 sync_generator3_test/test2: Fail 212 sync_generator3_test/test2: Fail
217 213
218 [ $compiler == dart2dart ] 214 [ $compiler == dart2dart ]
219 asyncstar_concat_test: CompileTimeError # Issue 21404 215 asyncstar_concat_test: CompileTimeError # Issue 21404
220 asyncstar_yield_test: CompileTimeError # Issue 21404 216 asyncstar_yield_test: CompileTimeError # Issue 21404
221 asyncstar_yieldstar_test: CompileTimeError # Issue 21404 217 asyncstar_yieldstar_test: CompileTimeError # Issue 21404
222 218
223 sync_generator2_test/07: MissingCompileTimeError # Issue 22324 219 sync_generator2_test/07: MissingCompileTimeError # Issue 22324
224 sync_generator2_test/08: MissingCompileTimeError # Issue 22324 220 sync_generator2_test/08: MissingCompileTimeError # Issue 22324
225 sync_generator2_test/10: MissingCompileTimeError # Issue 22324 221 sync_generator2_test/10: MissingCompileTimeError # Issue 22324
226 sync_generator2_test/20: MissingCompileTimeError # Issue 22324
227 sync_generator2_test/30: MissingCompileTimeError # Issue 22324
228 sync_generator2_test/51: MissingCompileTimeError # Issue 22324
229 sync_generator2_test/52: MissingCompileTimeError # Issue 22324
230 await_for_cancel_test: RuntimeError # Issue 21404 222 await_for_cancel_test: RuntimeError # Issue 21404
231 223
232 regress_13494_test: Fail # Issue 22370 224 regress_13494_test: Fail # Issue 22370
233 225
234 enum_duplicate_test/01: CompileTimeError # Issue 22169 226 enum_duplicate_test/01: CompileTimeError # Issue 22169
235 227
236 built_in_identifier_prefix_test: Fail # Issue 6972 228 built_in_identifier_prefix_test: Fail # Issue 6972
237 constructor_initializer_test/none: Fail # Issue 12633 229 constructor_initializer_test/none: Fail # Issue 12633
238 230
239 # Mixins fail on the VM. 231 # Mixins fail on the VM.
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
292 invocation_mirror_test: Fail, OK # Issue 12706 (hardcoded names). 284 invocation_mirror_test: Fail, OK # Issue 12706 (hardcoded names).
293 super_call4_test: Fail, OK # hardcoded names. 285 super_call4_test: Fail, OK # hardcoded names.
294 286
295 [ $minified ] 287 [ $minified ]
296 stack_trace_test: Fail, OK # Stack trace not preserved in minified code. 288 stack_trace_test: Fail, OK # Stack trace not preserved in minified code.
297 regress_21795_test: RuntimeError # Issue 12605 289 regress_21795_test: RuntimeError # Issue 12605
298 290
299 [ $compiler == dart2js && $runtime == d8 && $system == windows ] 291 [ $compiler == dart2js && $runtime == d8 && $system == windows ]
300 *deferred*: Skip # Issue 17458 292 *deferred*: Skip # Issue 17458
301 cha_deopt*: Skip # Issue 17458 293 cha_deopt*: Skip # Issue 17458
OLDNEW
« no previous file with comments | « tests/compiler/dart2js/type_checker_test.dart ('k') | tests/language/sync_generator2_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698