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

Unified Diff: test/codegen_expected/corelib/shuffle_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/corelib/shuffle_test.js
diff --git a/test/codegen_expected/corelib/shuffle_test.js b/test/codegen_expected/corelib/shuffle_test.js
index 60b6c3eab6953b5472858555cd775bae5a556e0f..5fe5be77863c9270cf3e01ee93b4749362a22b48 100644
--- a/test/codegen_expected/corelib/shuffle_test.js
+++ b/test/codegen_expected/corelib/shuffle_test.js
@@ -113,7 +113,7 @@ dart_library.library('corelib/shuffle_test', null, /* Imports */[
dart.fn(shuffle_test.testShuffle, dynamicTovoid());
shuffle_test.testRandom = function() {
let randomNums = JSArrayOfint().of([37, 87, 42, 157, 252, 17]);
- let numbers = core.List.generate(25, dart.fn(x => x, intToint()));
+ let numbers = ListOfint().generate(25, dart.fn(x => x, intToint()));
let l1 = numbers[dartx.toList]();
l1[dartx.shuffle](new shuffle_test.MockRandom(ListOfint()._check(randomNums)));
for (let i = 0; i < 50; i++) {

Powered by Google App Engine
This is Rietveld 408576698