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

Unified Diff: test/codegen/expect/syncstar_syntax.js

Issue 1757343002: upgrade to latest analyzer (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 4 years, 10 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/opassign.js ('k') | test/codegen/language/cascade2_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/codegen/expect/syncstar_syntax.js
diff --git a/test/codegen/expect/syncstar_syntax.js b/test/codegen/expect/syncstar_syntax.js
index aa2ace7a9cf4a4f940f52bff5d766ca6883a69de..29d5c204ed39adcfaab97065fd24270a42f6b3a2 100644
--- a/test/codegen/expect/syncstar_syntax.js
+++ b/test/codegen/expect/syncstar_syntax.js
@@ -40,10 +40,10 @@ dart_library.library('syncstar_syntax', null, /* Imports */[
}, core.int);
}
dart.fn(qux, core.Iterable$(core.int), []);
- expect.Expect.listEquals([1, 2, 3], foo()[dartx.toList]());
- expect.Expect.listEquals([1, 2, 3], new Class().bar()[dartx.toList]());
- expect.Expect.listEquals([1, 2, 3], Class.baz()[dartx.toList]());
- expect.Expect.listEquals([1, 2, 3], qux()[dartx.toList]());
+ expect.Expect.listEquals(dart.list([1, 2, 3], core.int), foo()[dartx.toList]());
+ expect.Expect.listEquals(dart.list([1, 2, 3], core.int), new Class().bar()[dartx.toList]());
+ expect.Expect.listEquals(dart.list([1, 2, 3], core.int), Class.baz()[dartx.toList]());
+ expect.Expect.listEquals(dart.list([1, 2, 3], core.int), qux()[dartx.toList]());
}
dart.fn(main);
// Exports:
« no previous file with comments | « test/codegen/expect/opassign.js ('k') | test/codegen/language/cascade2_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698