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

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

Issue 2859703003: fix #29544, mixins to a class with named constructors (Closed)
Patch Set: fix to use safeGetOwnProperty 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_forwarding_constructor3_test': fail,
195 'mixin_implements_test': fail, 194 'mixin_implements_test': fail,
196 'mixin_regress_13688_test': fail, 195 'mixin_regress_13688_test': fail,
197 'mixin_super_constructor_test': fail, // https://github.com/dart-lang/sdk/ issues/28059
198 'mixin_super_constructor2_test': fail, // Issue 28059
199 'mixin_super_constructor_named_test_none_multi': fail, // Issue 28059
200 'mixin_super_constructor_positionals_test_none_multi': fail, // Issue 2805 9 196 'mixin_super_constructor_positionals_test_none_multi': fail, // Issue 2805 9
201 'modulo_test': fail, 197 'modulo_test': fail,
202 'named_parameter_clash_test': fail, 198 'named_parameter_clash_test': fail,
203 'named_parameters_passing_falsy_test': is.firefox('<=50') ? fail : pass, 199 'named_parameters_passing_falsy_test': is.firefox('<=50') ? fail : pass,
204 'nan_identical_test': fail, 200 'nan_identical_test': fail,
205 'nested_switch_label_test': fail, 201 'nested_switch_label_test': fail,
206 'number_identifier_test_05_multi': fail, 202 'number_identifier_test_05_multi': fail,
207 'number_identity2_test': fail, 203 'number_identity2_test': fail,
208 'numbers_test': fail, 204 'numbers_test': fail,
209 'redirecting_factory_reflection_test': fail, 205 'redirecting_factory_reflection_test': fail,
(...skipping 721 matching lines...) Expand 10 before | Expand all | Expand 10 after
931 927
932 for (let action of unittest_tests) { 928 for (let action of unittest_tests) {
933 try { 929 try {
934 action(); 930 action();
935 } catch (e) { 931 } catch (e) {
936 console.error("Caught error tying to setup test:", e); 932 console.error("Caught error tying to setup test:", e);
937 } 933 }
938 } 934 }
939 }); 935 });
940 }); 936 });
OLDNEW
« no previous file with comments | « pkg/dev_compiler/lib/sdk/ddc_sdk.sum ('k') | pkg/dev_compiler/tool/input_sdk/private/ddc_runtime/classes.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698