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

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

Issue 1945113003: Better is/as check handling. With this CL, the subtype function in (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Update new tests after rebase Created 4 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
« no previous file with comments | « lib/runtime/dart_sdk.js ('k') | test/browser/runtime_tests.js » ('j') | 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 (function() { 5 (function() {
6 'use strict'; 6 'use strict';
7 7
8 let dart_sdk = dart_library.import('dart_sdk'); 8 let dart_sdk = dart_library.import('dart_sdk');
9 dart_sdk._isolate_helper.startRootIsolate(function() {}, []); 9 dart_sdk._isolate_helper.startRootIsolate(function() {}, []);
10 let async_helper = dart_library.import('async_helper').async_helper; 10 let async_helper = dart_library.import('async_helper').async_helper;
(...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after
418 'int_modulo_arith_test_none_multi': fail, 418 'int_modulo_arith_test_none_multi': fail,
419 'integer_to_radix_string_test': fail, 419 'integer_to_radix_string_test': fail,
420 'integer_to_string_test_01_multi': fail, 420 'integer_to_string_test_01_multi': fail,
421 'iterable_empty_test': fail, 421 'iterable_empty_test': fail,
422 'iterable_expand_test': fail, 422 'iterable_expand_test': fail,
423 'iterable_generate_test': fail, 423 'iterable_generate_test': fail,
424 'iterable_return_type_test_01_multi': fail, 424 'iterable_return_type_test_01_multi': fail,
425 'iterable_return_type_test_02_multi': fail, 425 'iterable_return_type_test_02_multi': fail,
426 'iterable_return_type_test_none_multi': fail, 426 'iterable_return_type_test_none_multi': fail,
427 'json_map_test': fail, 427 'json_map_test': fail,
428 'linked_hash_map_from_iterables_test': fail,
429 'list_fill_range_test': fail, 428 'list_fill_range_test': fail,
430 'list_filled_type_argument_test': fail,
431 'list_get_range_test': fail, 429 'list_get_range_test': fail,
432 'list_replace_range_test': fail, 430 'list_replace_range_test': fail,
433 'list_set_all_test': fail, 431 'list_set_all_test': fail,
434 'list_to_string2_test': fail, 432 'list_to_string2_test': fail,
435 'list_to_string_test': fail, 433 'list_to_string_test': fail,
436 'main_test': fail, 434 'main_test': fail,
437 'map_from_iterable_test': fail,
438 'map_from_iterables_test': fail,
439 'map_keys2_test': fail, 435 'map_keys2_test': fail,
440 'map_to_string_test': fail, 436 'map_to_string_test': fail,
441 'map_values2_test': fail,
442 'map_values3_test': fail,
443 'map_values4_test': fail,
444 'nan_infinity_test_01_multi': fail, 437 'nan_infinity_test_01_multi': fail,
445 'null_nosuchmethod_test': fail, 438 'null_nosuchmethod_test': fail,
446 'null_test': fail, 439 'null_test': fail,
447 'num_sign_test': fail, 440 'num_sign_test': fail,
448 'queue_test': fail, 441 'queue_test': fail,
449 'regress_r21715_test': fail, 442 'regress_r21715_test': fail,
450 'splay_tree_from_iterable_test': fail,
451 'splay_tree_from_iterables_test': fail,
452 'throw_half_surrogate_pair_test_02_multi': fail, 443 'throw_half_surrogate_pair_test_02_multi': fail,
453 'stacktrace_current_test': fail, 444 'stacktrace_current_test': fail,
454 'stacktrace_fromstring_test': fail, 445 'stacktrace_fromstring_test': fail,
455 'string_from_environment2_test': fail, 446 'string_from_environment2_test': fail,
456 'string_from_environment_test': fail, 447 'string_from_environment_test': fail,
457 'string_fromcharcodes_test': fail, 448 'string_fromcharcodes_test': fail,
458 'string_operations_with_null_test': fail, 449 'string_operations_with_null_test': fail,
459 'symbol_reserved_word_test_06_multi': fail, 450 'symbol_reserved_word_test_06_multi': fail,
460 'symbol_reserved_word_test_09_multi': fail, 451 'symbol_reserved_word_test_09_multi': fail,
461 'symbol_reserved_word_test_12_multi': fail, 452 'symbol_reserved_word_test_12_multi': fail,
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
544 535
545 if (!async_helper.asyncTestStarted) done(); 536 if (!async_helper.asyncTestStarted) done();
546 }); 537 });
547 } 538 }
548 } 539 }
549 540
550 for (let action of unittest_tests) { 541 for (let action of unittest_tests) {
551 action(); 542 action();
552 } 543 }
553 })(); 544 })();
OLDNEW
« no previous file with comments | « lib/runtime/dart_sdk.js ('k') | test/browser/runtime_tests.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698