Malte Langkabel
Malte Langkabel
Considering the following code example: ``` namespace spaceB { struct B1 { virtual void foo() = 0; }; } namespace spaceC { struct C1 : spaceB::B1 {}; } namespace spaceD...
Implement a "shallow" version of the java indexer that just records references via names, without trying to solve the underlying symbol. This should allow to index Java code on machines...
I think it would be better to track binaries that way. LFS comes with new repo conversion utilities, but I'm not sure if they require rewriting history. If we did...
Paths provided by Sourcetrail when trying to source location to emacs on Windows look like `C:\some\dir\filename.cpp` but emacs for cygwin would expect something like `/cygdrive/c/some/dir/filename.cpp`. This can probably be fixed...
Consider the following code snippet: ```python class Bar: pass class Foo: def __init__(self): self.bar = Bar() self.bar.baz = 9 foo = Foo() baz = foo.bar.baz ``` SourcetrailPythonIndexer is unable to...
Consider the following code snippet: ```python baz = sorted(name[:-3] for name in ["foobar"] if len(name) > 3) ``` In this snippet the SourcetrailPythonIndexer records an "unsolved symbol" instead of a...