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

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

Issue 2544163002: Fix runtime strong mode error in ListMixin (Closed)
Patch Set: Created 4 years 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 381 matching lines...) Expand 10 before | Expand all | Expand 10 after
392 'list_insert_test': fail, 392 'list_insert_test': fail,
393 'list_removeat_test': fail, 393 'list_removeat_test': fail,
394 'set_test': fail, // runtime strong mode reject 394 'set_test': fail, // runtime strong mode reject
395 }, 395 },
396 396
397 'corelib/regexp': { 397 'corelib/regexp': {
398 'default_arguments_test': fail, 398 'default_arguments_test': fail,
399 'UC16_test': firefox_fail, 399 'UC16_test': firefox_fail,
400 }, 400 },
401 401
402 'lib/collection': {
403 },
404
402 'lib/convert': { 405 'lib/convert': {
403 'encoding_test': skip_timeout, 406 'encoding_test': skip_timeout,
404 407
405 // TODO(jmesserly): this is in an inconsistent state between our old and 408 // TODO(jmesserly): this is in an inconsistent state between our old and
406 // newer SDKs. 409 // newer SDKs.
407 'html_escape_test': ['skip'], 410 'html_escape_test': ['skip'],
408 411
409 'json_utf8_chunk_test': skip_timeout, 412 'json_utf8_chunk_test': skip_timeout,
410 'latin1_test': skip_timeout, 413 'latin1_test': skip_timeout,
411 414
(...skipping 427 matching lines...) Expand 10 before | Expand all | Expand 10 after
839 842
840 for (let action of unittest_tests) { 843 for (let action of unittest_tests) {
841 try { 844 try {
842 action(); 845 action();
843 } catch (e) { 846 } catch (e) {
844 console.error("Caught error tying to setup test:", e); 847 console.error("Caught error tying to setup test:", e);
845 } 848 }
846 } 849 }
847 }); 850 });
848 }); 851 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698