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

Unified Diff: test/browser/runtime_tests.js

Issue 1143433002: Update runtime tests (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 7 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/browser/index.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/browser/runtime_tests.js
diff --git a/test/browser/runtime_tests.js b/test/browser/runtime_tests.js
index 59d48d5603c7eed09f3083f71b0132cf54362fea..f51ea3b6a6dfbffc8a3917baf95c09405a122735 100644
--- a/test/browser/runtime_tests.js
+++ b/test/browser/runtime_tests.js
@@ -116,10 +116,10 @@ suite('instanceOf', () => {
let BB = BB$();
class CC extends BB$(String, List) {}
- let Func2 = typedef('Func2', () => functionType(dynamic, [dynamic, dynamic]));
- let Foo = typedef('Foo', () => functionType(B, [B, String]));
+ let Func2 = typedef('Func2', functionType(dynamic, [dynamic, dynamic]));
+ let Foo = typedef('Foo', functionType(B, [B, String]));
- let FuncG$ = generic((T, U) => typedef('FuncG', () => functionType(T, [T, U])))
+ let FuncG$ = generic((T, U) => typedef('FuncG', functionType(T, [T, U])))
let FuncG = FuncG$();
// TODO(vsm): Revisit when we encode types on functions properly.
« no previous file with comments | « test/browser/index.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698