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

Unified Diff: packages/quiver/lib/src/pattern/glob.dart

Issue 2989763002: Update charted to 0.4.8 and roll (Closed)
Patch Set: Removed Cutch from list of reviewers Created 3 years, 5 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 | « packages/quiver/lib/src/iterables/zip.dart ('k') | packages/quiver/lib/src/streams/collect.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: packages/quiver/lib/src/pattern/glob.dart
diff --git a/packages/quiver/lib/src/pattern/glob.dart b/packages/quiver/lib/src/pattern/glob.dart
index d8552273927b152672542d47849545a81f81168c..5413ae1e79ad01a587684f42a89ef251ad69b2a2 100644
--- a/packages/quiver/lib/src/pattern/glob.dart
+++ b/packages/quiver/lib/src/pattern/glob.dart
@@ -16,17 +16,15 @@ part of quiver.pattern;
// TODO(justin): add more detailed documentation and explain how matching
// differs or is similar to globs in Python and various shells.
-/**
- * A [Pattern] that matches against filesystem path-like strings with
- * wildcards.
- *
- * The pattern matches strings as follows:
- * * The whole string must match, not a substring
- * * Any non wildcard is matched as a literal
- * * '*' matches one or more characters except '/'
- * * '?' matches exactly one character except '/'
- * * '**' matches one or more characters including '/'
- */
+/// A [Pattern] that matches against filesystem path-like strings with
+/// wildcards.
+///
+/// The pattern matches strings as follows:
+/// * The whole string must match, not a substring
+/// * Any non wildcard is matched as a literal
+/// * '*' matches one or more characters except '/'
+/// * '?' matches exactly one character except '/'
+/// * '**' matches one or more characters including '/'
class Glob implements Pattern {
final RegExp regex;
final String pattern;
« no previous file with comments | « packages/quiver/lib/src/iterables/zip.dart ('k') | packages/quiver/lib/src/streams/collect.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698