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

Unified Diff: runtime/bin/path_impl.dart

Issue 10938010: Switch from interfaces to abstract classes in dart:io. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 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
Index: runtime/bin/path_impl.dart
diff --git a/runtime/bin/path_impl.dart b/runtime/bin/path_impl.dart
index 5f660e0830d31d5c9234ef93cebe9f7d6284a49a..42ef0c2a69030fefb239b40383514d7b85069a88 100644
--- a/runtime/bin/path_impl.dart
+++ b/runtime/bin/path_impl.dart
@@ -5,7 +5,7 @@
class _Path implements Path {
final String _path;
- const _Path(String source) : _path = source;
+ _Path(String source) : _path = source;
_Path.fromNative(String source) : _path = _clean(source);
int hashCode() => _path.hashCode();

Powered by Google App Engine
This is Rietveld 408576698