blob: fc3aa360d90a4b721c6fbb666a1d6178c23181e9 [file] [log] [blame]
// Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of file.src.backends.local;
class _LocalDirectory
extends _LocalFileSystemEntity<_LocalDirectory, io.Directory>
with ForwardingDirectory {
_LocalDirectory(FileSystem fs, io.Directory delegate) : super(fs, delegate);
}