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

Side by Side Diff: pkg/scheduled_test/lib/src/descriptor/pattern_descriptor.dart

Issue 14070010: Refactor Future constructors. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Added co19 issue number. Created 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library descriptor.pattern; 5 library descriptor.pattern;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 import 'dart:io'; 8 import 'dart:io';
9 9
10 import 'package:pathos/path.dart' as path; 10 import 'package:pathos/path.dart' as path;
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 if (pattern is String) return "'$pattern'"; 103 if (pattern is String) return "'$pattern'";
104 if (pattern is! RegExp) return '$pattern'; 104 if (pattern is! RegExp) return '$pattern';
105 105
106 var regExp = pattern as RegExp; 106 var regExp = pattern as RegExp;
107 var flags = new StringBuffer(); 107 var flags = new StringBuffer();
108 if (!regExp.isCaseSensitive) flags.write('i'); 108 if (!regExp.isCaseSensitive) flags.write('i');
109 if (regExp.isMultiLine) flags.write('m'); 109 if (regExp.isMultiLine) flags.write('m');
110 return '/${regExp.pattern}/$flags'; 110 return '/${regExp.pattern}/$flags';
111 } 111 }
112 112
113 Future create([String parent]) => new Future.immediateError( 113 Future create([String parent]) => new Future.error(
114 new UnsupportedError("Pattern descriptors don't support create().")); 114 new UnsupportedError("Pattern descriptors don't support create()."));
115 115
116 Stream<List<int>> load(String pathToLoad) => errorStream( 116 Stream<List<int>> load(String pathToLoad) => errorStream(
117 new UnsupportedError("Pattern descriptors don't support load().")); 117 new UnsupportedError("Pattern descriptors don't support load()."));
118 118
119 Stream<List<int>> read() => errorStream(new UnsupportedError("Pattern " 119 Stream<List<int>> read() => errorStream(new UnsupportedError("Pattern "
120 "descriptors don't support read().")); 120 "descriptors don't support read()."));
121 } 121 }
OLDNEW
« no previous file with comments | « pkg/scheduled_test/lib/src/descriptor/nothing_descriptor.dart ('k') | pkg/scheduled_test/lib/src/mock_clock.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698