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

Unified Diff: pkg/scheduled_test/lib/src/descriptor/file_descriptor.dart

Issue 164883002: pkg/scheduled_test: formatter (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: rebase Created 6 years, 10 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 | « pkg/scheduled_test/lib/descriptor.dart ('k') | pkg/scheduled_test/lib/src/substitute_future.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/scheduled_test/lib/src/descriptor/file_descriptor.dart
diff --git a/pkg/scheduled_test/lib/src/descriptor/file_descriptor.dart b/pkg/scheduled_test/lib/src/descriptor/file_descriptor.dart
index 515f6e48a6fac2023fca2561324ae1b61726845b..25762d6202da80be7a92ef2a2fac14437e5c46b6 100644
--- a/pkg/scheduled_test/lib/src/descriptor/file_descriptor.dart
+++ b/pkg/scheduled_test/lib/src/descriptor/file_descriptor.dart
@@ -28,22 +28,22 @@ abstract class FileDescriptor extends Descriptor implements ReadableDescriptor {
/// contents against [matcher]. If the file is created, it's considered to be
/// empty.
factory FileDescriptor.matcher(String name, Matcher matcher) =>
- new _MatcherFileDescriptor(name, matcher, isBinary: false);
+ new _MatcherFileDescriptor(name, matcher, isBinary: false);
/// Creates a new binary [FileDescriptor] with [name] that matches its binary
/// contents against [matcher]. If the file is created, it's considered to be
/// empty.
factory FileDescriptor.binaryMatcher(String name, Matcher matcher) =>
- new _MatcherFileDescriptor(name, matcher, isBinary: true);
+ new _MatcherFileDescriptor(name, matcher, isBinary: true);
/// Creates a new binary [FileDescriptor] descriptor with [name] and
/// [contents].
factory FileDescriptor.binary(String name, List<int> contents) =>
- new _BinaryFileDescriptor(name, contents);
+ new _BinaryFileDescriptor(name, contents);
/// Creates a new text [FileDescriptor] with [name] and [contents].
factory FileDescriptor(String name, String contents) =>
- new _StringFileDescriptor(name, contents);
+ new _StringFileDescriptor(name, contents);
FileDescriptor._(String name, this.contents)
: super(name);
« no previous file with comments | « pkg/scheduled_test/lib/descriptor.dart ('k') | pkg/scheduled_test/lib/src/substitute_future.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698