getExeLocation function

File getExeLocation(
  1. File dartFile, [
  2. DartleCache? dartleCache
])

Get the location Dartle would store binaries created with the createDartExe method.

Implementation

File getExeLocation(File dartFile, [DartleCache? dartleCache]) {
  final cache = dartleCache ?? DartleCache.instance;
  return cache.getExecutablesLocation(dartFile);
}