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

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

Issue 1148333003: No dynamic at runtime (Closed) Base URL: git@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
Index: test/codegen/expect/BenchmarkBase.js
diff --git a/test/codegen/expect/BenchmarkBase.js b/test/codegen/expect/BenchmarkBase.js
index a4a2c37ee954dda4f98235659a69e85bfa9e4a42..a7d80234e3bdbdf0c7c1f2f99429281ba0d50140 100644
--- a/test/codegen/expect/BenchmarkBase.js
+++ b/test/codegen/expect/BenchmarkBase.js
@@ -21,9 +21,9 @@ var core = dart.import(core);
}
}
dart.setSignature(Expect, {
- methods: () => ({fail: dart.functionType(dart.dynamic, [dart.dynamic])}),
+ methods: () => ({fail: dart.functionType(core.Object, [core.Object])}),
statics: () => ({
- equals: dart.functionType(dart.void, [dart.dynamic, dart.dynamic]),
+ equals: dart.functionType(dart.void, [core.Object, core.Object]),
listEquals: dart.functionType(dart.void, [core.List, core.List])
}),
names: ['equals', 'listEquals']

Powered by Google App Engine
This is Rietveld 408576698