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);
}