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

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

Issue 10540048: Implement 'as' operator. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Make "as" a builtin identifier. Created 8 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 | Annotate | Revision Log
« tests/language/cast_test.dart ('K') | « tests/language/cast_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 # In order to maintain maximum test coverage for all builds, 8 # In order to maintain maximum test coverage for all builds,
9 # please use the following procedure to mark a test 9 # please use the following procedure to mark a test
10 # failed on architectures other than the one you are working on. 10 # failed on architectures other than the one you are working on.
11 # 11 #
12 # 1) Copy the old version of the test to 12 # 1) Copy the old version of the test to
13 # tests/language/src/test_name_[dartc|vm|frog]_test.dart. 13 # tests/language/src/test_name_[dartc|vm|frog]_test.dart.
14 # to maintain coverage. 14 # to maintain coverage.
15 # 2) File a bug on each architecture for the failure due to the language change. 15 # 2) File a bug on each architecture for the failure due to the language change.
16 # 3) Update the language/src directory with the updated test. 16 # 3) Update the language/src directory with the updated test.
17 17
18 [ $compiler == none ] 18 [ $compiler == none ]
19 cast_test: Fail # Issue 3401
19 gc_test: Fail # Issue 1487 20 gc_test: Fail # Issue 1487
20 field_override_test/none: Fail # Issue 742: field shadowing now allowed 21 field_override_test/none: Fail # Issue 742: field shadowing now allowed
21 field_override_test/01: Fail # Issue 742: field shadowing now allowed 22 field_override_test/01: Fail # Issue 742: field shadowing now allowed
22 field_override_test/02: Fail # Issue 742: field shadowing now allowed 23 field_override_test/02: Fail # Issue 742: field shadowing now allowed
23 super_field_access_test: Fail # Issue 742: field shadowing now allowed 24 super_field_access_test: Fail # Issue 742: field shadowing now allowed
24 pseudo_kw_illegal_test/03: Fail # Issue 356 25 pseudo_kw_illegal_test/03: Fail # Issue 356
25 pseudo_kw_illegal_test/08: Fail # Issue 356 26 pseudo_kw_illegal_test/08: Fail # Issue 356
26 pseudo_kw_illegal_test/10: Fail # Issue 356 27 pseudo_kw_illegal_test/10: Fail # Issue 356
27 pseudo_kw_illegal_test/14: Fail # Issue 356 28 pseudo_kw_illegal_test/14: Fail # Issue 356
28 29
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 [ $compiler == dartc ] 62 [ $compiler == dartc ]
62 abstract_syntax_test/01: Fail 63 abstract_syntax_test/01: Fail
63 application_negative_test: Fail 64 application_negative_test: Fail
64 assert_keyword_negative_test: Fail 65 assert_keyword_negative_test: Fail
65 assert_test: Fail # Uses AssertError class. Bug 4385894. 66 assert_test: Fail # Uses AssertError class. Bug 4385894.
66 assign_instance_method_negative_test: Fail 67 assign_instance_method_negative_test: Fail
67 bad_named_parameters_test: Fail # Issue 1941 68 bad_named_parameters_test: Fail # Issue 1941
68 bad_named_parameters2_test: Fail # Issue 1941 69 bad_named_parameters2_test: Fail # Issue 1941
69 body_less_constructor_wrong_arg_negative_test: Fail 70 body_less_constructor_wrong_arg_negative_test: Fail
70 call_operator_test: Pass # Issue 1355 71 call_operator_test: Pass # Issue 1355
72 cast_test: Fail # Issue 3401
71 char_escape_test: Pass # Issue 1654 73 char_escape_test: Pass # Issue 1654
72 closure_call_wrong_argument_count_negative_test: Fail 74 closure_call_wrong_argument_count_negative_test: Fail
73 compile_time_constant3_test: Fail # Issue 1780 75 compile_time_constant3_test: Fail # Issue 1780
74 compile_time_constant_o_test: Fail # Issue 2126 76 compile_time_constant_o_test: Fail # Issue 2126
75 compile_time_constant_p_test/01: Fail # Issue 2580 77 compile_time_constant_p_test/01: Fail # Issue 2580
76 const_constructor_syntax_test/05: Fail 78 const_constructor_syntax_test/05: Fail
77 const_counter_negative_test: Fail # issue 1655 79 const_counter_negative_test: Fail # issue 1655
78 constructor3_negative_test: Fail 80 constructor3_negative_test: Fail
79 constructor_call_wrong_argument_count_negative_test: Fail 81 constructor_call_wrong_argument_count_negative_test: Fail
80 default_factory_library_test: Fail # Issue 514 82 default_factory_library_test: Fail # Issue 514
(...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after
453 constructor_redirect2_negative_test: Skip # Undiagnosed infinite loop. 455 constructor_redirect2_negative_test: Skip # Undiagnosed infinite loop.
454 456
455 [ $compiler == frog && $runtime == none ] 457 [ $compiler == frog && $runtime == none ]
456 *: Skip 458 *: Skip
457 459
458 [ $arch == simarm ] 460 [ $arch == simarm ]
459 *: Skip 461 *: Skip
460 462
461 [ $arch == arm ] 463 [ $arch == arm ]
462 *: Skip 464 *: Skip
OLDNEW
« tests/language/cast_test.dart ('K') | « tests/language/cast_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698