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

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

Issue 1977893002: implement @JS classes (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: enable more tests 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/src/compiler/js_interop.dart ('k') | no next file » | 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 549 matching lines...) Expand 10 before | Expand all | Expand 10 after
560 'indexeddb_4_test': ['unittest', 'skip', 'fail'], 560 'indexeddb_4_test': ['unittest', 'skip', 'fail'],
561 'indexeddb_5_test': ['unittest', 'skip', 'fail'], 561 'indexeddb_5_test': ['unittest', 'skip', 'fail'],
562 'input_element_test': ['unittest', 'skip', 'fail'], 562 'input_element_test': ['unittest', 'skip', 'fail'],
563 'instance_of_test': ['unittest', 'skip', 'fail'], 563 'instance_of_test': ['unittest', 'skip', 'fail'],
564 'interactive_test': ['unittest', 'skip', 'fail'], 564 'interactive_test': ['unittest', 'skip', 'fail'],
565 'isolates_test': ['unittest', 'skip', 'fail'], 565 'isolates_test': ['unittest', 'skip', 'fail'],
566 'js_function_getter_test': ['unittest', 'skip', 'fail'], 566 'js_function_getter_test': ['unittest', 'skip', 'fail'],
567 'js_function_getter_trust_types_test': ['unittest', 'skip', 'fail'], 567 'js_function_getter_trust_types_test': ['unittest', 'skip', 'fail'],
568 'js_interop_1_test': ['unittest', 'skip', 'fail'], 568 'js_interop_1_test': ['unittest', 'skip', 'fail'],
569 'js_test': ['unittest', 'skip', 'fail'], 569 'js_test': ['unittest', 'skip', 'fail'],
570 'js_typed_interop_anonymous2_exp_test': ['unittest', 'skip', 'fail'], 570 'js_typed_interop_anonymous2_exp_test': 'unittest',
571 'js_typed_interop_anonymous2_test': ['unittest', 'skip', 'fail'], 571 'js_typed_interop_anonymous2_test': 'unittest',
572 'js_typed_interop_anonymous_exp_test': ['unittest', 'skip', 'fail'], 572 'js_typed_interop_anonymous_exp_test': 'unittest',
573 'js_typed_interop_anonymous_test': ['unittest', 'skip', 'fail'], 573 'js_typed_interop_anonymous_test': 'unittest',
574 'js_typed_interop_anonymous_unreachable_exp_test': ['unittest', 'skip', 'f ail'], 574 'js_typed_interop_anonymous_unreachable_exp_test': 'unittest',
575 'js_typed_interop_anonymous_unreachable_test': ['unittest', 'skip', 'fail' ], 575 'js_typed_interop_anonymous_unreachable_test': 'unittest',
576 'js_typed_interop_default_arg_test': ['unittest', 'skip', 'fail'], 576 'js_typed_interop_default_arg_test': ['unittest', 'skip', 'fail'],
577 'js_typed_interop_side_cast_exp_test': ['unittest', 'skip', 'fail'], 577 'js_typed_interop_side_cast_exp_test': ['unittest', 'skip', 'fail'],
578 'js_typed_interop_side_cast_test': ['unittest', 'skip', 'fail'], 578 'js_typed_interop_side_cast_test': ['unittest', 'skip', 'fail'],
579 'js_typed_interop_test': ['unittest', 'skip', 'fail'], 579 'js_typed_interop_test': ['unittest', 'skip', 'fail'],
580 'keyboard_event_test': ['unittest', 'skip', 'fail'], 580 'keyboard_event_test': ['unittest', 'skip', 'fail'],
581 'localstorage_test': ['unittest', 'skip', 'fail'], 581 'localstorage_test': ['unittest', 'skip', 'fail'],
582 'location_test': ['unittest', 'skip', 'fail'], 582 'location_test': ['unittest', 'skip', 'fail'],
583 'mediasource_test': ['unittest', 'skip', 'fail'], 583 'mediasource_test': ['unittest', 'skip', 'fail'],
584 'media_stream_test': ['unittest', 'skip', 'fail'], 584 'media_stream_test': ['unittest', 'skip', 'fail'],
585 'messageevent_test': ['unittest', 'skip', 'fail'], 585 'messageevent_test': ['unittest', 'skip', 'fail'],
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after
812 812
813 for (let action of unittest_tests) { 813 for (let action of unittest_tests) {
814 try { 814 try {
815 action(); 815 action();
816 } catch (e) { 816 } catch (e) {
817 console.error("Caught error tying to setup test:", e); 817 console.error("Caught error tying to setup test:", e);
818 } 818 }
819 } 819 }
820 }); 820 });
821 })(); 821 })();
OLDNEW
« no previous file with comments | « lib/src/compiler/js_interop.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698