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

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

Issue 2638393004: Fix subtyping check on number (Closed)
Patch Set: Created 3 years, 11 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 | « pkg/dev_compiler/lib/src/compiler/code_generator.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 define(['dart_sdk', 'async_helper', 'expect', 'unittest', 'is', 'require'], 5 define(['dart_sdk', 'async_helper', 'expect', 'unittest', 'is', 'require'],
6 function(dart_sdk, async_helper, expect, unittest, is, require) { 6 function(dart_sdk, async_helper, expect, unittest, is, require) {
7 'use strict'; 7 'use strict';
8 8
9 async_helper = async_helper.async_helper; 9 async_helper = async_helper.async_helper;
10 let minitest = expect.minitest; 10 let minitest = expect.minitest;
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 'double_int_to_string_test': fail, 124 'double_int_to_string_test': fail,
125 'dynamic_test': fail, 125 'dynamic_test': fail,
126 'exception_test': fail, 126 'exception_test': fail,
127 'execute_finally6_test': fail, 127 'execute_finally6_test': fail,
128 'expect_test': fail, 128 'expect_test': fail,
129 'extends_test_lib': fail, 129 'extends_test_lib': fail,
130 'external_test_10_multi': fail, 130 'external_test_10_multi': fail,
131 'external_test_13_multi': fail, 131 'external_test_13_multi': fail,
132 'external_test_20_multi': fail, 132 'external_test_20_multi': fail,
133 'f_bounded_quantification3_test': fail, 133 'f_bounded_quantification3_test': fail,
134 'fast_method_extraction_test': fail,
135 'field_increment_bailout_test': fail, 134 'field_increment_bailout_test': fail,
136 'field_optimization3_test': fail, 135 'field_optimization3_test': fail,
137 'final_syntax_test_08_multi': fail, 136 'final_syntax_test_08_multi': fail,
138 'first_class_types_test': fail, 137 'first_class_types_test': fail,
139 'for_variable_capture_test': chrome_fail, 138 'for_variable_capture_test': chrome_fail,
140 'function_subtype0_test': fail, 139 'function_subtype0_test': fail,
141 'function_subtype1_test': fail, 140 'function_subtype1_test': fail,
142 'function_subtype2_test': fail, 141 'function_subtype2_test': fail,
143 'function_subtype3_test': fail, 142 'function_subtype3_test': fail,
144 'function_subtype_bound_closure0_test': fail, 143 'function_subtype_bound_closure0_test': fail,
(...skipping 734 matching lines...) Expand 10 before | Expand all | Expand 10 after
879 878
880 for (let action of unittest_tests) { 879 for (let action of unittest_tests) {
881 try { 880 try {
882 action(); 881 action();
883 } catch (e) { 882 } catch (e) {
884 console.error("Caught error tying to setup test:", e); 883 console.error("Caught error tying to setup test:", e);
885 } 884 }
886 } 885 }
887 }); 886 });
888 }); 887 });
OLDNEW
« no previous file with comments | « pkg/dev_compiler/lib/src/compiler/code_generator.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698