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

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

Issue 2740573003: Fix dangling ddc references in libraries.dart (Closed)
Patch Set: Patch the right libraries.dart file Created 3 years, 9 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 226 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 'redirecting_factory_reflection_test': fail, 237 'redirecting_factory_reflection_test': fail,
238 'regress_16640_test': fail, 238 'regress_16640_test': fail,
239 'regress_18535_test': fail, 239 'regress_18535_test': fail,
240 'regress_22666_test': fail, 240 'regress_22666_test': fail,
241 'regress_22777_test': flaky, 241 'regress_22777_test': flaky,
242 'setter_no_getter_test_01_multi': fail, 242 'setter_no_getter_test_01_multi': fail,
243 'stack_overflow_stacktrace_test': fail, 243 'stack_overflow_stacktrace_test': fail,
244 'stack_overflow_test': fail, 244 'stack_overflow_test': fail,
245 'stacktrace_rethrow_error_test_none_multi': fail, 245 'stacktrace_rethrow_error_test_none_multi': fail,
246 'stacktrace_rethrow_error_test_withtraceparameter_multi': fail, 246 'stacktrace_rethrow_error_test_withtraceparameter_multi': fail,
247 'stacktrace_rethrow_nonerror_test': fail,
248 'stacktrace_test': chrome_fail, 247 'stacktrace_test': chrome_fail,
249 'string_interpolate_null_test': fail, 248 'string_interpolate_null_test': fail,
250 'switch_label2_test': fail, 249 'switch_label2_test': fail,
251 'switch_label_test': fail, 250 'switch_label_test': fail,
252 'switch_try_catch_test': fail, 251 'switch_try_catch_test': fail,
253 'throwing_lazy_variable_test': fail, 252 'throwing_lazy_variable_test': fail,
254 'truncdiv_test': fail, // did not throw 253 'truncdiv_test': fail, // did not throw
255 'type_variable_nested_test': fail, // unsound is-check 254 'type_variable_nested_test': fail, // unsound is-check
256 'type_variable_typedef_test': fail, // unsound is-check 255 'type_variable_typedef_test': fail, // unsound is-check
257 256
(...skipping 609 matching lines...) Expand 10 before | Expand all | Expand 10 after
867 866
868 for (let action of unittest_tests) { 867 for (let action of unittest_tests) {
869 try { 868 try {
870 action(); 869 action();
871 } catch (e) { 870 } catch (e) {
872 console.error("Caught error tying to setup test:", e); 871 console.error("Caught error tying to setup test:", e);
873 } 872 }
874 } 873 }
875 }); 874 });
876 }); 875 });
OLDNEW
« no previous file with comments | « pkg/dev_compiler/lib/sdk/ddc_sdk.sum ('k') | pkg/dev_compiler/tool/input_sdk/lib/html/dart2js/nativewrappers.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698