Earlier quoted context omitted.
Any plans on Clojure support?
CrossClj does something very similar. http://crossclj.info/
Sourcegraph: Search code, jump around source, see real usage examples
41–43 of 43 posts
Re: Sourcegraph: Search code, jump around source, see real usage examples
#42This is cool, but I'm not sure what's going on here. Is this full static (i.e. AST) analysis of these languages or simple full-text search, or some middle-ground constraint on full-text search driven by common usage patterns?
For example, "d3.timer" doesn't show meaningful results?
Re: Sourcegraph: Search code, jump around source, see real usage examples
#43This is cool, but I'm not sure what's going on here. Is this full static (i.e. AST) analysis of these languages or simple full-text search, or some middle-ground constraint on full-text search driven by common usage patterns? For example, "d3.timer" doesn't show meaningful results?
This is full static analysis, with AST and type inference.
However, type inference on JavaScript is quite hard, and as you've seen, our analyzer fails on many complex libraries like d3. We have an open issue about fixing d3 support at https://github.com/sourcegraph/sourcegraph.com/issues/13, which you can +1 if you want to stay updated on. And we're releasing the analysis toolkit we use as open source soon so it's not bottlenecked on us.