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

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

Issue 2783443002: Fix for #29003 (Closed)
Patch Set: Created 3 years, 8 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
« no previous file with comments | « pkg/dev_compiler/lib/src/compiler/code_generator.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) 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 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 'list_literal3_test': fail, 214 'list_literal3_test': fail,
215 'many_generic_instanceof_test': fail, 215 'many_generic_instanceof_test': fail,
216 'many_named_arguments_test': whitelist, 216 'many_named_arguments_test': whitelist,
217 'map_literal10_test': fail, 217 'map_literal10_test': fail,
218 'map_literal7_test': fail, 218 'map_literal7_test': fail,
219 'memory_swap_test': skip_timeout, 219 'memory_swap_test': skip_timeout,
220 'method_invocation_test': fail, 220 'method_invocation_test': fail,
221 'mint_arithmetic_test': fail, 221 'mint_arithmetic_test': fail,
222 'mixin_forwarding_constructor3_test': fail, 222 'mixin_forwarding_constructor3_test': fail,
223 'mixin_implements_test': fail, 223 'mixin_implements_test': fail,
224 'mixin_issue10216_2_test': fail,
225 'mixin_mixin2_test': fail,
226 'mixin_mixin3_test': fail,
227 'mixin_mixin4_test': fail,
228 'mixin_mixin5_test': fail,
229 'mixin_mixin6_test': fail,
230 'mixin_mixin7_test': fail,
231 'mixin_mixin_bound2_test': fail,
232 'mixin_mixin_bound_test': fail,
233 'mixin_mixin_test': fail,
234 'mixin_regress_13688_test': fail, 224 'mixin_regress_13688_test': fail,
235 'modulo_test': fail, 225 'modulo_test': fail,
236 'named_parameter_clash_test': fail, 226 'named_parameter_clash_test': fail,
237 'named_parameters_passing_falsy_test': is.firefox('<=50') ? fail : pass, 227 'named_parameters_passing_falsy_test': is.firefox('<=50') ? fail : pass,
238 'nan_identical_test': fail, 228 'nan_identical_test': fail,
239 'nested_switch_label_test': fail, 229 'nested_switch_label_test': fail,
240 'number_identifier_test_05_multi': fail, 230 'number_identifier_test_05_multi': fail,
241 'number_identity2_test': fail, 231 'number_identity2_test': fail,
242 'numbers_test': fail, 232 'numbers_test': fail,
243 'redirecting_factory_reflection_test': fail, 233 'redirecting_factory_reflection_test': fail,
(...skipping 674 matching lines...) Expand 10 before | Expand all | Expand 10 after
918 908
919 for (let action of unittest_tests) { 909 for (let action of unittest_tests) {
920 try { 910 try {
921 action(); 911 action();
922 } catch (e) { 912 } catch (e) {
923 console.error("Caught error tying to setup test:", e); 913 console.error("Caught error tying to setup test:", e);
924 } 914 }
925 } 915 }
926 }); 916 });
927 }); 917 });
OLDNEW
« no previous file with comments | « pkg/dev_compiler/lib/src/compiler/code_generator.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698