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

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

Issue 1355893003: Rewire DDC to use the analyzer task model (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Fix for identifiers Created 5 years, 3 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/expect/syncstar_syntax.js
diff --git a/test/codegen/expect/syncstar_syntax.js b/test/codegen/expect/syncstar_syntax.js
index 239db04ea762f35d86c980d4940ffa118aa6ba66..19dbe89dbfc099eae250d9a260e0b5dd500bbfd1 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]());
+ dart.dcall(expect.Expect.listEquals, [1, 2, 3], dart.dcall(dart.dcall(foo)[dartx.toList]));
+ dart.dcall(expect.Expect.listEquals, [1, 2, 3], dart.dcall(dart.dcall(new Class().bar)[dartx.toList]));
+ dart.dcall(expect.Expect.listEquals, [1, 2, 3], dart.dcall(dart.dcall(Class.baz)[dartx.toList]));
+ dart.dcall(expect.Expect.listEquals, [1, 2, 3], dart.dcall(dart.dcall(qux)[dartx.toList]));
}
dart.fn(main);
// Exports:

Powered by Google App Engine
This is Rietveld 408576698