JuliaLang / PrecompileTools.jl

Reduce time-to-first-execution of Julia code
MIT License
209 stars 13 forks source link

Improve macro hygiene #9

Closed rikhuijzer closed 1 year ago

rikhuijzer commented 1 year ago

Ensures that the macro's work even when the callee has not made the symbol PrecompileTools available, that is, even when the callee used:

using PrecompileTools: @setup_workload, @compile_workload

instead of

using PrecompileTools
ranocha commented 1 year ago

Closes #8

timholy commented 1 year ago

Thanks!