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

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

Issue 1328303002: fix implicit_scope_test and builtin_identifier_test (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: format Created 5 years, 3 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/js/printer.dart ('k') | test/codegen/language/built_in_identifier_test.dart » ('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 _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 let async_helper = dart_library.import('async_helper/async_helper'); 10 let async_helper = dart_library.import('async_helper/async_helper');
(...skipping 17 matching lines...) Expand all
28 testCase = (testCase < 10 ? '0' : '') + testCase; 28 testCase = (testCase < 10 ? '0' : '') + testCase;
29 } 29 }
30 dartLanguageTest(`${multitestName}_${testCase}_multi`); 30 dartLanguageTest(`${multitestName}_${testCase}_multi`);
31 } 31 }
32 } else { 32 } else {
33 dartLanguageTest(name); 33 dartLanguageTest(name);
34 } 34 }
35 } 35 }
36 } 36 }
37 37
38 suite('scoping', () => {
39 dartLanguageTests([
40 'implicit_scope_test',
41 ['built_in_identifier_test', 'none', 1]
42 ]);
43 });
44
38 suite('dynamic type literal', () => { 45 suite('dynamic type literal', () => {
39 dartLanguageTests([ 46 dartLanguageTests([
40 ['const_dynamic_type_literal_test', 'none', 1, 3] 47 ['const_dynamic_type_literal_test', 'none', 1, 3]
41 ]); 48 ]);
42 }); 49 });
43 50
44 suite('cascade', () => { 51 suite('cascade', () => {
45 dartLanguageTests(['cascade_in_expression_function_test']); 52 dartLanguageTests(['cascade_in_expression_function_test']);
46 }); 53 });
47 54
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 'export_main_override_test', 130 'export_main_override_test',
124 'export_main_test', 131 'export_main_test',
125 'export_test', 132 'export_test',
126 'local_export_test', 133 'local_export_test',
127 'reexport_core_test', 134 'reexport_core_test',
128 'top_level_entry_test' 135 'top_level_entry_test'
129 ]); 136 ]);
130 }); 137 });
131 138
132 })(); 139 })();
OLDNEW
« no previous file with comments | « lib/src/js/printer.dart ('k') | test/codegen/language/built_in_identifier_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698