register static method

void register(
  1. String path,
  2. String feature
)

Register a path -> feature mapping explicitly.

Implementation

static void register(String path, String feature) {
  _index[_normalizePath(path)] = feature;
}