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

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

Issue 1310513013: fixes #314, super method tear offs (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_codegen.dart ('k') | test/codegen/expect/html_input.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 24 matching lines...) Expand all
35 } 35 }
36 } 36 }
37 37
38 suite('scoping', () => { 38 suite('scoping', () => {
39 dartLanguageTests([ 39 dartLanguageTests([
40 'implicit_scope_test', 40 'implicit_scope_test',
41 ['built_in_identifier_test', 'none', 1] 41 ['built_in_identifier_test', 'none', 1]
42 ]); 42 ]);
43 }); 43 });
44 44
45 suite('method binding', () => {
46 dartLanguageTests([
47 ['super_bound_closure_test', 'none'],
48 'method_binding_test'
49 ]);
50 });
51
45 suite('dynamic type literal', () => { 52 suite('dynamic type literal', () => {
46 dartLanguageTests([ 53 dartLanguageTests([
47 ['const_dynamic_type_literal_test', 'none', 1, 3] 54 ['const_dynamic_type_literal_test', 'none', 1, 3]
48 ]); 55 ]);
49 }); 56 });
50 57
51 suite('cascade', () => { 58 suite('cascade', () => {
52 dartLanguageTests(['cascade_in_expression_function_test']); 59 dartLanguageTests(['cascade_in_expression_function_test']);
53 }); 60 });
54 61
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 'export_main_override_test', 137 'export_main_override_test',
131 'export_main_test', 138 'export_main_test',
132 'export_test', 139 'export_test',
133 'local_export_test', 140 'local_export_test',
134 'reexport_core_test', 141 'reexport_core_test',
135 'top_level_entry_test' 142 'top_level_entry_test'
136 ]); 143 ]);
137 }); 144 });
138 145
139 })(); 146 })();
OLDNEW
« no previous file with comments | « lib/src/codegen/js_codegen.dart ('k') | test/codegen/expect/html_input.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698