newLink method

void newLink(
  1. String path,
  2. String target
)

Create a link from the path to the target.

Implementation

void newLink(String path, String target) {
  _ensureAbsoluteAndNormalized(path);
  _ensureAbsoluteAndNormalized(target);
  _pathToLinkedPath[path] = target;
}