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

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

Issue 1263583005: implement exports, fixes #141 (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: rebase Created 5 years, 4 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 (function() { 5 (function() {
6 'use strict'; 6 'use strict';
7 7
8 let _isolate_helper = dart_library.import('dart/_isolate_helper'); 8 let _isolate_helper = dart_library.import('dart/_isolate_helper');
9 _isolate_helper.startRootIsolate(function() {}, []); 9 _isolate_helper.startRootIsolate(function() {}, []);
10 10
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 dartLanguageTests([ 61 dartLanguageTests([
62 // TODO(jmesserly): figure out why this test is hanging. 62 // TODO(jmesserly): figure out why this test is hanging.
63 //'async_star_cancel_and_throw_in_finally_test', 63 //'async_star_cancel_and_throw_in_finally_test',
64 'async_star_regression_23116_test', 64 'async_star_regression_23116_test',
65 'asyncstar_concat_test', 65 'asyncstar_concat_test',
66 'asyncstar_throw_in_catch_test', 66 'asyncstar_throw_in_catch_test',
67 'asyncstar_yield_test', 67 'asyncstar_yield_test',
68 'asyncstar_yieldstar_test' 68 'asyncstar_yieldstar_test'
69 ]); 69 ]);
70 }); 70 });
71
72 suite('export', () => {
73 dartLanguageTests([
74 'duplicate_export_test',
75 'export_cyclic_test',
76 'export_double_same_main_test',
77 'export_main_override_test',
78 'export_main_test',
79 'export_test',
80 'local_export_test',
81 'reexport_core_test',
82 'top_level_entry_test'
83 ]);
84 });
85
71 })(); 86 })();
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698