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

Unified Diff: lib/runtime/dart/_interceptors.js

Issue 1121853002: fixes #150, broken code in js_number.dart (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 8 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 | « no previous file | test/generated_sdk/lib/_internal/compiler/js_lib/js_number.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/runtime/dart/_interceptors.js
diff --git a/lib/runtime/dart/_interceptors.js b/lib/runtime/dart/_interceptors.js
index f9b0df9757b8ab8be84ee83059079dcc5a01bb06..ca2bb15fb2d950520c37a55401db8912a4b67c22 100644
--- a/lib/runtime/dart/_interceptors.js
+++ b/lib/runtime/dart/_interceptors.js
@@ -205,7 +205,7 @@ var _interceptors;
if (match == null) {
throw new core.UnsupportedError(`Unexpected toString result: ${result}`);
}
- let result = dart.dindex(match, 1);
+ result = dart.dindex(match, 1);
let exponent = +dart.dindex(match, 3);
if (dart.dindex(match, 2) != null) {
result = result + dart.dindex(match, 2);
« no previous file with comments | « no previous file | test/generated_sdk/lib/_internal/compiler/js_lib/js_number.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698