I can't seem to get the @code_expr macro to work with PrecompileTools. I have tried using includet and importing module inside @compile_workload as well as @setup_workload. Nothing seems to work. It always returns nothing (things error when I try to use includet)
@setup_workload begin
# Putting some things in `@setup_workload` instead of `@compile_workload` can reduce the size of the
# precompile file and potentially make loading faster.
using Revise
using CodeTracking
using TestHandcalcFunctions
@compile_workload begin
f = @code_expr calc_Ix(5, 15)
println(f)
end
end
Any thoughts?