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

Side by Side Diff: sdk/lib/_internal/compiler/implementation/filenames.dart

Issue 16019002: Merge the dart:uri library into dart:core and update the Uri class (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Final cleanup Created 7 years, 7 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) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 filenames; 5 library filenames;
6 6
7 import 'dart:io'; 7 import 'dart:io';
8 import 'dart:uri';
9 8
10 // TODO(ahe): This library should be replaced by a general 9 // TODO(ahe): This library should be replaced by a general
11 // path-munging library. 10 // path-munging library.
12 // 11 //
13 // See also: 12 // See also:
14 // http://blogs.msdn.com/b/ie/archive/2006/12/06/file-uris-in-windows.aspx 13 // http://blogs.msdn.com/b/ie/archive/2006/12/06/file-uris-in-windows.aspx
15 14
16 String nativeToUriPath(String filename) { 15 String nativeToUriPath(String filename) {
17 return new Path(filename).toString(); 16 return new Path(filename).toString();
18 } 17 }
19 18
20 String uriPathToNative(String path) { 19 String uriPathToNative(String path) {
21 return new Path(path).toNativePath(); 20 return new Path(path).toNativePath();
22 } 21 }
23 22
24 final Uri currentDirectory = new Uri.fromComponents( 23 final Uri currentDirectory = new Uri(
25 scheme: 'file', 24 scheme: 'file',
26 path: appendSlash(nativeToUriPath(new File('.').fullPathSync()))); 25 path: appendSlash(nativeToUriPath(new File('.').fullPathSync())));
27 26
28 String appendSlash(String path) => path.endsWith('/') ? path : '$path/'; 27 String appendSlash(String path) => path.endsWith('/') ? path : '$path/';
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698