addSearchPath method
Adds a directory to the module search path.
searchPath - The directory path to add to the search paths
Implementation
void addSearchPath(String searchPath) {
final normalized = path.normalize(searchPath);
if (!_searchPaths.contains(normalized)) {
_searchPaths.add(normalized);
}
}