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

Unified Diff: editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/formatter/testsource/test007$A_out.dart

Issue 8966004: Fix the Dart formatter (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' Created 9 years 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: editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/formatter/testsource/test007$A_out.dart
===================================================================
--- editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/formatter/testsource/test007$A_out.dart (revision 0)
+++ editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/formatter/testsource/test007$A_out.dart (revision 0)
@@ -0,0 +1,21 @@
+/*
+ * this is a test class
+ */
+class Version {
+ int major;
+ int minor;
+ int service;
+ String qualifier;
+
+ Version.full(int this.major, int this.minor, int this.service, String this.qualifier);
+ Version.part(major, minor, service):this.full(major, minor, service, null);
+
+ String toString() {
+ StringBuffer sb = new StringBuffer();
+ sb.add(this.major).add('.').
+ add(this.minor).add('.').
+ add(service).add('.').
+ add(this.qualifier);
+ return sb.toString();
+ }
+}
« no previous file with comments | « editor/tools/plugins/com.google.dart.tools.core_test/src/com/google/dart/tools/core/formatter/testsource/test007$A_in.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698