You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Wolfram Language (.wl, .wls) — vendors LumaKernel/tree-sitter-wolfram grammar (ABI 13)
Function extraction: f[x_] := ... and f[x_] = ... at top-level and nested inside Module/Block
Call extraction: apply nodes with LHS-definition filtering (definition heads are not treated as calls)
Import extraction: << "file.wl" (get_top) and Needs["Package"]`
Caller attribution fix: compute_func_qn in the unified walker now resolves Wolfram function names from apply(user_symbol("f"), ...) LHS, so CALLS edges are attributed to the enclosing function rather than the file module
MATLAB call extraction
Added function_call and command node types to call extraction
Resolves function references like inv(A), eig(M), disp hello in .m files
Lean 4 call extraction
Added apply call nodes with type-position filtering to exclude type annotation false positives
Windows linker fix
Added -Wl,--allow-multiple-definition CGo LDFLAGS for Windows to work around a GCC 15.2.0 / MSYS2 UCRT64 regression