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

Unified Diff: lib/runtime/dart/math.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: lib/runtime/dart/math.js
diff --git a/lib/runtime/dart/math.js b/lib/runtime/dart/math.js
index 4afd836c2304c47fdb6b8f2918ca1b9632bb023c..6aa4b972a171f155efa87f9a5d4b6e2d3d53dcbb 100644
--- a/lib/runtime/dart/math.js
+++ b/lib/runtime/dart/math.js
@@ -25,8 +25,8 @@ var _js_helper = dart.lazyImport(_js_helper);
statics: () => ({
combine: dart.functionType(core.int, [core.int, core.int]),
finish: dart.functionType(core.int, [core.int]),
- hash2: dart.functionType(core.int, [dart.dynamic, dart.dynamic]),
- hash4: dart.functionType(core.int, [dart.dynamic, dart.dynamic, dart.dynamic, dart.dynamic])
+ hash2: dart.functionType(core.int, [core.Object, core.Object]),
+ hash4: dart.functionType(core.int, [core.Object, core.Object, core.Object, core.Object])
}),
names: ['combine', 'finish', 'hash2', 'hash4']
});

Powered by Google App Engine
This is Rietveld 408576698