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

Side by Side Diff: packages/path/lib/src/style.dart

Issue 2989763002: Update charted to 0.4.8 and roll (Closed)
Patch Set: Removed Cutch from list of reviewers Created 3 years, 4 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
« no previous file with comments | « packages/path/lib/src/path_exception.dart ('k') | packages/path/lib/src/style/posix.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 path.style;
6
7 import 'context.dart'; 5 import 'context.dart';
8 import 'style/posix.dart'; 6 import 'style/posix.dart';
9 import 'style/url.dart'; 7 import 'style/url.dart';
10 import 'style/windows.dart'; 8 import 'style/windows.dart';
11 9
12 /// An enum type describing a "flavor" of path. 10 /// An enum type describing a "flavor" of path.
13 abstract class Style { 11 abstract class Style {
14 /// POSIX-style paths use "/" (forward slash) as separators. Absolute paths 12 /// POSIX-style paths use "/" (forward slash) as separators. Absolute paths
15 /// start with "/". Used by UNIX, Linux, Mac OS X, and others. 13 /// start with "/". Used by UNIX, Linux, Mac OS X, and others.
16 static final Style posix = new PosixStyle(); 14 static final Style posix = new PosixStyle();
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 String pathFromUri(Uri uri); 77 String pathFromUri(Uri uri);
80 78
81 @Deprecated("Most style members will be removed in path 2.0.") 79 @Deprecated("Most style members will be removed in path 2.0.")
82 Uri relativePathToUri(String path); 80 Uri relativePathToUri(String path);
83 81
84 @Deprecated("Most style members will be removed in path 2.0.") 82 @Deprecated("Most style members will be removed in path 2.0.")
85 Uri absolutePathToUri(String path); 83 Uri absolutePathToUri(String path);
86 84
87 String toString() => name; 85 String toString() => name;
88 } 86 }
OLDNEW
« no previous file with comments | « packages/path/lib/src/path_exception.dart ('k') | packages/path/lib/src/style/posix.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698