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

Side by Side Diff: pkg/dev_compiler/test/browser/language_tests.js

Issue 2979353002: implement `Invocation.typeArguments` in DDC (Closed)
Patch Set: fix Created 3 years, 5 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) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, 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 define(['dart_sdk', 'async_helper', 'expect', 'unittest', 'is', 'require'], 5 define(['dart_sdk', 'async_helper', 'expect', 'unittest', 'is', 'require'],
6 function(dart_sdk, async_helper, expect, unittest, is, require) { 6 function(dart_sdk, async_helper, expect, unittest, is, require) {
7 'use strict'; 7 'use strict';
8 8
9 async_helper = async_helper.async_helper; 9 async_helper = async_helper.async_helper;
10 let minitest = expect.minitest; 10 let minitest = expect.minitest;
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 'async_star_test_05_multi': async_unittest, 81 'async_star_test_05_multi': async_unittest,
82 82
83 'async_switch_test': fail, 83 'async_switch_test': fail,
84 'async_test': whitelist, 84 'async_test': whitelist,
85 'async_this_bound_test': whitelist, 85 'async_this_bound_test': whitelist,
86 'asyncstar_throw_in_catch_test': ['skip', 'fail'], 86 'asyncstar_throw_in_catch_test': ['skip', 'fail'],
87 'await_future_test': skip_timeout, 87 'await_future_test': skip_timeout,
88 'bit_operations_test_none_multi': fail, // DDC/dart2js canonicalize bitop results to unsigned 88 'bit_operations_test_none_multi': fail, // DDC/dart2js canonicalize bitop results to unsigned
89 'branch_canonicalization_test': fail, // JS bit operations truncate to 32 bits. 89 'branch_canonicalization_test': fail, // JS bit operations truncate to 32 bits.
90 'call_closurization_test': fail, // Functions do not expose a "call" metho d. 90 'call_closurization_test': fail, // Functions do not expose a "call" metho d.
91 'call_with_no_such_method_test': fail, // Function.apply not really implem ented.
92 'canonical_const2_test': fail, 91 'canonical_const2_test': fail,
93 'canonical_const_test': fail, 92 'canonical_const_test': fail,
94 'compile_time_constant10_test_none_multi': fail, 93 'compile_time_constant10_test_none_multi': fail,
95 'compile_time_constant_a_test': fail, 94 'compile_time_constant_a_test': fail,
96 'compile_time_constant_b_test': fail, 95 'compile_time_constant_b_test': fail,
97 'compile_time_constant_d_test': fail, 96 'compile_time_constant_d_test': fail,
98 'compile_time_constant_k_test_none_multi': fail, 97 'compile_time_constant_k_test_none_multi': fail,
99 'compile_time_constant_o_test_none_multi': fail, 98 'compile_time_constant_o_test_none_multi': fail,
100 'const_evaluation_test_01_multi': fail, 99 'const_evaluation_test_01_multi': fail,
101 'const_switch_test_02_multi': fail, 100 'const_switch_test_02_multi': fail,
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 'identical_closure2_test': fail, 150 'identical_closure2_test': fail,
152 'infinite_switch_label_test': fail, 151 'infinite_switch_label_test': fail,
153 'infinity_test': fail, 152 'infinity_test': fail,
154 'initializing_formal_final_test': fail, 153 'initializing_formal_final_test': fail,
155 'instance_creation_in_function_annotation_test': fail, 154 'instance_creation_in_function_annotation_test': fail,
156 'instanceof2_test': fail, 155 'instanceof2_test': fail,
157 'instanceof4_test_01_multi': fail, 156 'instanceof4_test_01_multi': fail,
158 'instanceof4_test_none_multi': fail, 157 'instanceof4_test_none_multi': fail,
159 'integer_division_by_zero_test': fail, 158 'integer_division_by_zero_test': fail,
160 'issue23244_test': fail, 159 'issue23244_test': fail,
160 'invocation_mirror_test': fail, // dcall does not correctly detect named a rguments
161 'invocation_mirror2_test': fail, // JsInstanceMirror.delegate unimplemente d
161 'lazy_static3_test': fail, 162 'lazy_static3_test': fail,
162 'least_upper_bound_expansive_test_none_multi': fail, 163 'least_upper_bound_expansive_test_none_multi': fail,
163 'left_shift_test': fail, 164 'left_shift_test': fail,
164 'list_is_test': fail, 165 'list_is_test': fail,
165 'list_literal3_test': fail, 166 'list_literal3_test': fail,
166 'main_test_03_multi': fail, 167 'main_test_03_multi': fail,
167 'many_generic_instanceof_test': fail, 168 'many_generic_instanceof_test': fail,
168 'many_named_arguments_test': whitelist, 169 'many_named_arguments_test': whitelist,
169 'map_literal10_test': fail, 170 'map_literal10_test': fail,
170 'map_literal7_test': fail, 171 'map_literal7_test': fail,
(...skipping 717 matching lines...) Expand 10 before | Expand all | Expand 10 after
888 889
889 for (let action of unittest_tests) { 890 for (let action of unittest_tests) {
890 try { 891 try {
891 action(); 892 action();
892 } catch (e) { 893 } catch (e) {
893 console.error("Caught error tying to setup test:", e); 894 console.error("Caught error tying to setup test:", e);
894 } 895 }
895 } 896 }
896 }); 897 });
897 }); 898 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698