| Index: runtime/bin/path_impl.dart
|
| diff --git a/runtime/bin/path_impl.dart b/runtime/bin/path_impl.dart
|
| index b05084ce2f3c0b6ae04530a68c1b9fb6e8ae24f8..8c7386019506f39505bef4d58c28362486e86331 100644
|
| --- a/runtime/bin/path_impl.dart
|
| +++ b/runtime/bin/path_impl.dart
|
| @@ -8,7 +8,7 @@ class _Path implements Path {
|
| _Path(String source) : _path = source;
|
| _Path.fromNative(String source) : _path = _clean(source);
|
|
|
| - int hashCode() => _path.hashCode();
|
| + int get hashCode => _path.hashCode;
|
|
|
| static String _clean(String source) {
|
| switch (Platform.operatingSystem) {
|
|
|