Hi
Assuming that in the indexing process I setup 3 different documents
doc1, doc2, doc3.
with something like:
doc1.add(Field.Keyword("variable", "var_no1"));
doc1.add(Field.Keyword("variable", "var_test1"));
doc2.add(Field.Keyword("variable", "var_no2"));
doc2.add(Field.Keyword("variable", "var_
lass");
...
Is it possible to store the complete AST (in an serializable format)
in the document or should the extra information be stored for every
(function-)identifier (like for example number of arguments, source
start, source end, javadoc start, javadoc end,...)
Did someone already impl