Re: [julia-users] cscope like tool

2016-10-28 Thread Ajay Mendez
Thanks for the pointer. I'm looking for a way to browse code. Reduced to the essential, given a method foo() what are its callers and calees. The methods in Lint.jl do look promising, though I need to cobble together something I can call from the shell. On Thursday, October 27, 2016 at 6:52:18

Re: [julia-users] cscope like tool

2016-10-26 Thread Isaiah Norton
I don't think so, but Lint.jl might be of interest: https://github.com/ tonyhffong/Lint.jl On Wed, Oct 26, 2016 at 8:56 AM, Ajay Mendez wrote: > Looking for a tool to grok large projects, a la cscope. > methods(method_name) is good but insufficient. For those unfamiliar with > cscope, it allows

[julia-users] cscope like tool

2016-10-26 Thread Ajay Mendez
Looking for a tool to grok large projects, a la cscope. methods(method_name) is good but insufficient. For those unfamiliar with cscope, it allows the following queries: Find this C symbol: Find this global definition: Find functions called by this function: Find functions calling this function: