lookup method

dynamic lookup(
  1. String path
)

Searches for a given path in the scripts map.

Implementation

dynamic lookup(String path) {
  return _searchResults[path] ??= scripts.lookup(path);
}