Skip to content

Commit

Permalink
fix: prefix host call (#184)
Browse files Browse the repository at this point in the history
  • Loading branch information
thesayyn authored Oct 21, 2022
1 parent 16cf509 commit 1cbe540
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ts/private/ts_project_worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,7 @@ function getOrCreateWorker(args, inputs) {
sweepLeastRecentlyUsedWorkers();
}
worker = createProgram(args, inputs);
host.debuglog(`Created a new worker for ${key}`);
worker.host.debuglog(`Created a new worker for ${key}`);
} else {
// NB: removed from the map intentionally. to achieve LRU effect on the workers map.
workers.delete(key)
Expand Down

0 comments on commit 1cbe540

Please sign in to comment.