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

Unified Diff: test/codegen/expect/lib-typed_data-all.js

Issue 1847163002: Regen against latest analyzer (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Created 4 years, 9 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
« no previous file with comments | « test/codegen/expect/language-all.js ('k') | test/codegen/lib/typed_data/typed_data_sublist_type_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/codegen/expect/lib-typed_data-all.js
diff --git a/test/codegen/expect/lib-typed_data-all.js b/test/codegen/expect/lib-typed_data-all.js
index 2ec9bbecc0e9b3e4788d9a522af58c6e061d15f6..26991042e6908625bab42e8b8f7bf7daf26bda24 100644
--- a/test/codegen/expect/lib-typed_data-all.js
+++ b/test/codegen/expect/lib-typed_data-all.js
@@ -3582,13 +3582,13 @@ dart_library.library('lib/typed_data/typed_data_sublist_type_test', null, /* Imp
let isIntList = new (Is$(core.List$(core.int)))('List<int>');
let isDoubleList = new (Is$(core.List$(core.double)))('List<double>');
let isNumList = new (Is$(core.List$(core.num)))('List<num>');
- let allChecks = dart.list([isFloat32list, isFloat64list, isInt8List, isInt16List, isInt32List, isUint8List, isUint16List, isUint32List, isUint8ClampedList], core.Object);
+ let allChecks = dart.list([isFloat32list, isFloat64list, isInt8List, isInt16List, isInt32List, isUint8List, isUint16List, isUint32List, isUint8ClampedList], Is$(core.List));
function testInt(list, check) {
- testSublistType(list, [check, isIntList, isNumList], allChecks);
+ testSublistType(list, dart.list([dart.as(check, Is$(core.List)), isIntList, isNumList], Is$(core.List)), allChecks);
}
dart.fn(testInt);
function testDouble(list, check) {
- testSublistType(list, [check, isDoubleList, isNumList], allChecks);
+ testSublistType(list, dart.list([dart.as(check, Is$(core.List)), isDoubleList, isNumList], Is$(core.List)), allChecks);
}
dart.fn(testDouble);
testDouble(typed_data.Float32List.new(10), isFloat32list);
« no previous file with comments | « test/codegen/expect/language-all.js ('k') | test/codegen/lib/typed_data/typed_data_sublist_type_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698