Takafumi Arakaki
Takafumi Arakaki
Hi, sorry for the delay in review. I pushed suggestions directly. As @jishnub also suggested, I'll bump the version number. Aqua bumps the version whenever it might break someone's CI....
Hmm... Yes, that's strange. It's totally possible I mess up generating Pkg's output but it doesn't explain why the original file content is something different. Just in case there are...
Hmm... that's strange. I have no idea what's going on. What's the CPU usage of the Julia process when this happens? Is it using up CPUs or just stuck and...
I think it's a bit too non-trivial problem. You'd need CSTParser.jl if you try to handle string literals containing trailing spaces etc. I think a separate dedicated package might be...
Just FYI, you can use `const Id = Init(*)` using `Init` from https://github.com/tkf/InitialValues.jl instead of `I` to do `Id * A === A` and `A * Id === A`.
Yeah, I think I can skip fields while processing `solve`d tree. But I thought it would be nice if I can just blindly look for `ScopedVar`.
I get that macro calls `Expr(:macrocall, ...)` are not supported (as mentioned in README) and it perhaps is impossible to do it without implementing Julia interpreter. But isn't it a...
Yes, Julia language is a huge target and I admire your courage to implement JuliaVariables.jl :) > the scheme file(julia-syntax.scm) which implements the syntax analysis I'm not familiar with compiler/language...
Why not copy code from ArgCheck.jl which provides strictly more information and also is battle-tested? We can optimize this more later using the same logic as https://github.com/JuliaLang/julia/pull/41342#issuecomment-1002369980
Quoting [your comment in Zulip](https://julialang.zulipchat.com/#narrow/stream/137791-general/topic/Why.20do.20we.20want.20things.20in.20stdlib.3F/near/275467822) > I sometimes want things in the stdlib because there’s something else similar there and I don’t want that to be favored by virtue of...