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

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

Issue 1310943005: fix `dynamic` type literal (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: 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/codegen/js_module_item_order.dart ('k') | test/codegen/expect/sunflower/sunflower.html » ('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('dynamic type literal', () => {
39 dartLanguageTests([
40 ['const_dynamic_type_literal_test', 'none', 1, 3]
41 ]);
42 });
43
38 suite('cascade', () => { 44 suite('cascade', () => {
39 dartLanguageTests(['cascade_in_expression_function_test']); 45 dartLanguageTests(['cascade_in_expression_function_test']);
40 }); 46 });
41 47
42 suite('null aware ops', () => { 48 suite('null aware ops', () => {
43 dartLanguageTests([ 49 dartLanguageTests([
44 ['conditional_method_invocation_test', 'none', 1, 2, 3, 4], 50 ['conditional_method_invocation_test', 'none', 1, 2, 3, 4],
45 ['conditional_property_access_test', 'none', 1, 2, 3], 51 ['conditional_property_access_test', 'none', 1, 2, 3],
46 ['conditional_property_assignment_test', 'none', 1, 2, 3, 7, 8, 9], 52 ['conditional_property_assignment_test', 'none', 1, 2, 3, 7, 8, 9],
47 ['conditional_property_increment_decrement_test', 53 ['conditional_property_increment_decrement_test',
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 'export_main_override_test', 123 'export_main_override_test',
118 'export_main_test', 124 'export_main_test',
119 'export_test', 125 'export_test',
120 'local_export_test', 126 'local_export_test',
121 'reexport_core_test', 127 'reexport_core_test',
122 'top_level_entry_test' 128 'top_level_entry_test'
123 ]); 129 ]);
124 }); 130 });
125 131
126 })(); 132 })();
OLDNEW
« no previous file with comments | « lib/src/codegen/js_module_item_order.dart ('k') | test/codegen/expect/sunflower/sunflower.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698