getLink method
Return a Link that corresponds to the given path
.
The path
must be absolute and normalized.
A link may or may not exist at this location.
Implementation
@override
Link getLink(String path) {
_ensureAbsoluteAndNormalized(path);
return _MemoryLink(this, path);
}