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

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

Issue 1090613006: fix #155, numeric integer literals (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 | « lib/src/js/nodes.dart ('k') | test/codegen/expect/misc.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/codegen/expect/misc.js
diff --git a/test/codegen/expect/8invalid-chars.in+file_name.js b/test/codegen/expect/misc.js
similarity index 50%
copy from test/codegen/expect/8invalid-chars.in+file_name.js
copy to test/codegen/expect/misc.js
index fd8aa1174001b82f980c89da847ec1165718dc93..478672d1b3d6995611f62c58b1493d800c716292 100644
--- a/test/codegen/expect/8invalid-chars.in+file_name.js
+++ b/test/codegen/expect/misc.js
@@ -1,9 +1,12 @@
-var $8invalid$45chars$46in$43file_name;
+var misc;
(function(exports) {
'use strict';
// Function main: () → dynamic
function main() {
+ core.print((1).toString());
+ core.print(1.0.toString());
+ core.print(1.1.toString());
}
// Exports:
exports.main = main;
-})($8invalid$45chars$46in$43file_name || ($8invalid$45chars$46in$43file_name = {}));
+})(misc || (misc = {}));
« no previous file with comments | « lib/src/js/nodes.dart ('k') | test/codegen/expect/misc.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698