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

Unified Diff: lib/path.dart

Issue 1064273002: pkg/path: Add type annotations to top-level and static fields. (Closed) Base URL: https://github.com/dart-lang/path.git@master
Patch Set: version nits Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « CHANGELOG.md ('k') | lib/src/style.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/path.dart
diff --git a/lib/path.dart b/lib/path.dart
index cfbaf11fe078336c0e95b93db7fe0b33a870132c..af9efe54e849ded0200f1f45b469c32ac3c35bed 100644
--- a/lib/path.dart
+++ b/lib/path.dart
@@ -54,13 +54,13 @@ export 'src/path_exception.dart';
export 'src/style.dart';
/// A default context for manipulating POSIX paths.
-final posix = new Context(style: Style.posix);
+final Context posix = new Context(style: Style.posix);
/// A default context for manipulating Windows paths.
-final windows = new Context(style: Style.windows);
+final Context windows = new Context(style: Style.windows);
/// A default context for manipulating URLs.
-final url = new Context(style: Style.url);
+final Context url = new Context(style: Style.url);
/// The system path context.
///
« no previous file with comments | « CHANGELOG.md ('k') | lib/src/style.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698