Tim Holy

Results 243 issues of Tim Holy

Currently I don't see a way to run until the next breakpoint is hit. Am I missing the equivalent of a `continue` statement? `finish` is close, but only works within...

Just filing this so the piece not fixed by #62 doesn't get forgotten. (See comment below "Unfortunately".)

This fixes the following error: ```jl julia> @noinline foo(r) = r.start foo (generic function with 1 method) julia> @noinline function bar(start, stop) r = start:stop x = foo(r) x*x+x end...

If a method definition occurs inside a macro, or if one uses `whereis(lineinfo, method)` and `lineinfo` corresponds to lines added by a macro, CodeTracking relies on the information in the...

This pull request sets up the TagBot workflow on this repository. cc: @timholy

This PR fixes a corner case in our current scheme for invalidating outdated methods when loading `.ji` files. What we *want* to do is test whether a given MethodInstance would...

precompile
latency
backport 1.8

https://discourse.julialang.org/t/suddenly-cannot-use-plots-package/42385 It would be sad to turn off precompilation entirely on older Julia versions, but unless you can track down the issue more specifically it's the easiest way to fix...

discussion

https://github.com/JuliaLang/julia/pull/31563#issuecomment-591469542, posted by @AriMKatz, drew my attention to this package. I agree that there appear to be a subset of shared goals between this package and https://github.com/timholy/ArrayIteration.jl. This is a...

This switches to "do a little work" for precompilation, rather than explicitly spelling out the specific signatures. This should be more maintainable and potentially more exhaustive (or could be made...