logic: indexer fixes

* forward declarations are recorded as undefined types now
* fixed minor issue with dependent template argument names
This commit is contained in:
malte_langkabel
2016-12-13 10:45:16 +01:00
parent 5391ea449b
commit 982264d7ba
10 changed files with 48 additions and 35 deletions
+3 -3
View File
@@ -143,7 +143,7 @@ void JavaParser::doRecordSymbol(
NameHierarchy::deserialize(m_javaEnvironment->toStdString(jSymbolName)),
intToSymbolKind(jSymbolType),
access,
isImplicit
isImplicit ? DEFINITION_IMPLICIT : DEFINITION_EXPLICIT
);
}
@@ -161,7 +161,7 @@ void JavaParser::doRecordSymbolWithLocation(
intToSymbolKind(jSymbolType),
ParseLocation(m_currentFilePath, beginLine, beginColumn, endLine, endColumn),
access,
isImplicit
isImplicit ? DEFINITION_IMPLICIT : DEFINITION_EXPLICIT
);
}
@@ -181,7 +181,7 @@ void JavaParser::doRecordSymbolWithLocationAndScope(
ParseLocation(m_currentFilePath, beginLine, beginColumn, endLine, endColumn),
ParseLocation(m_currentFilePath, scopeBeginLine, scopeBeginColumn, scopeEndLine, scopeEndColumn),
access,
isImplicit
isImplicit ? DEFINITION_IMPLICIT : DEFINITION_EXPLICIT
);
}