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

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

Issue 2779063002: One more minor mixin fix (Closed)
Patch Set: Fix comment Created 3 years, 7 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 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 'left_shift_test': fail, 184 'left_shift_test': fail,
185 'list_is_test': fail, 185 'list_is_test': fail,
186 'list_literal3_test': fail, 186 'list_literal3_test': fail,
187 'many_generic_instanceof_test': fail, 187 'many_generic_instanceof_test': fail,
188 'many_named_arguments_test': whitelist, 188 'many_named_arguments_test': whitelist,
189 'map_literal10_test': fail, 189 'map_literal10_test': fail,
190 'map_literal7_test': fail, 190 'map_literal7_test': fail,
191 'memory_swap_test': skip_timeout, 191 'memory_swap_test': skip_timeout,
192 'method_invocation_test': fail, 192 'method_invocation_test': fail,
193 'mint_arithmetic_test': fail, 193 'mint_arithmetic_test': fail,
194 'mixin_implements_test': fail,
195 'mixin_regress_13688_test': fail,
196 'mixin_super_constructor_positionals_test_none_multi': fail, // Issue 2805 9 194 'mixin_super_constructor_positionals_test_none_multi': fail, // Issue 2805 9
197 'modulo_test': fail, 195 'modulo_test': fail,
198 'named_parameter_clash_test': fail, 196 'named_parameter_clash_test': fail,
199 'named_parameters_passing_falsy_test': is.firefox('<=50') ? fail : pass, 197 'named_parameters_passing_falsy_test': is.firefox('<=50') ? fail : pass,
200 'nan_identical_test': fail, 198 'nan_identical_test': fail,
201 'nested_switch_label_test': fail, 199 'nested_switch_label_test': fail,
202 'number_identifier_test_05_multi': fail, 200 'number_identifier_test_05_multi': fail,
203 'number_identity2_test': fail, 201 'number_identity2_test': fail,
204 'numbers_test': fail, 202 'numbers_test': fail,
205 'redirecting_factory_reflection_test': fail, 203 'redirecting_factory_reflection_test': fail,
(...skipping 717 matching lines...) Expand 10 before | Expand all | Expand 10 after
923 921
924 for (let action of unittest_tests) { 922 for (let action of unittest_tests) {
925 try { 923 try {
926 action(); 924 action();
927 } catch (e) { 925 } catch (e) {
928 console.error("Caught error tying to setup test:", e); 926 console.error("Caught error tying to setup test:", e);
929 } 927 }
930 } 928 }
931 }); 929 });
932 }); 930 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698