Parsing keyword argument method call name?

Hey everyone,

I’m working on improving Term.jl’s stack trace functionality. The idea is to present nicely formatted stacktraces (hiding irrelevant info and highlighting useful stuff with color)

However I find it hard to deal with calls to function that include keyword arguments:

see frame 4 here

and the recomended alternative method names here (for a type constructor):

is there a way to get the method name in a nicer format? Maybe even with arguments/kwargs and their types? I understand this may not be possible for anonymous functions, but it seems like it should be doable here.

Thank you

1 Like