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

Unified Diff: test/codegen_expected/lib/typed_data/typed_data_from_list_test.js

Issue 2102053003: Remove DDC custom error list now that strong mode analyzer handles it (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: another fix Created 4 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: test/codegen_expected/lib/typed_data/typed_data_from_list_test.js
diff --git a/test/codegen_expected/lib/typed_data/typed_data_from_list_test.js b/test/codegen_expected/lib/typed_data/typed_data_from_list_test.js
index fa9bc59204c6ce3df597fed44d2dc47ea42c648b..fe1fdcee803804b13246a4941caf9f1d05a5c6a4 100644
--- a/test/codegen_expected/lib/typed_data/typed_data_from_list_test.js
+++ b/test/codegen_expected/lib/typed_data/typed_data_from_list_test.js
@@ -9,12 +9,12 @@ dart_library.library('lib/typed_data/typed_data_from_list_test', null, /* Import
const dart = dart_sdk.dart;
const dartx = dart_sdk.dartx;
const typed_data_from_list_test = Object.create(null);
+ let UnmodifiableListViewOfint = () => (UnmodifiableListViewOfint = dart.constFn(collection.UnmodifiableListView$(core.int)))();
let JSArrayOfint = () => (JSArrayOfint = dart.constFn(_interceptors.JSArray$(core.int)))();
- let ListOfint = () => (ListOfint = dart.constFn(core.List$(core.int)))();
let VoidTodynamic = () => (VoidTodynamic = dart.constFn(dart.definiteFunctionType(dart.dynamic, [])))();
typed_data_from_list_test.main = function() {
- let list = new collection.UnmodifiableListView(JSArrayOfint().of([1, 2]));
- let typed = typed_data.Uint8List.fromList(ListOfint()._check(list));
+ let list = new (UnmodifiableListViewOfint())(JSArrayOfint().of([1, 2]));
+ let typed = typed_data.Uint8List.fromList(list);
if (typed[dartx.get](0) != 1 || typed[dartx.get](1) != 2 || typed[dartx.length] != 2) {
dart.throw('Test failed');
}
« no previous file with comments | « test/codegen_expected/lib/math/point_test.js ('k') | test/codegen_expected/lib/typed_data/typed_data_list_test.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698