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

Unified Diff: test/codegen/misc.dart

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 | « test/codegen/expect/misc.txt ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/codegen/misc.dart
diff --git a/test/dart_codegen/types/c.dart b/test/codegen/misc.dart
similarity index 72%
copy from test/dart_codegen/types/c.dart
copy to test/codegen/misc.dart
index 62b77a3fbe35e2db4e9d121dcd889f247081f6d3..cc83f8bcf9770783f4938a28b5fccd5fd8563d1b 100644
--- a/test/dart_codegen/types/c.dart
+++ b/test/codegen/misc.dart
@@ -2,12 +2,8 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-library c;
-
-import 'b.dart';
-
-void bar() {
- f3(f4(3));
- f1(f4);
- f2(f3);
+main() {
+ print(1.toString());
+ print(1.0.toString());
+ print(1.1.toString());
}
« no previous file with comments | « test/codegen/expect/misc.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698