Skip to content
Snippets Groups Projects
Commit 59624d91 authored by Roberto Raggi's avatar Roberto Raggi
Browse files

Set the resolved symbol (it needs some cleanup).

parent f63b8e66
No related branches found
No related tags found
No related merge requests found
...@@ -222,6 +222,9 @@ static FullySpecifiedType resolve(const FullySpecifiedType &ty, ...@@ -222,6 +222,9 @@ static FullySpecifiedType resolve(const FullySpecifiedType &ty,
if (resolvedName) if (resolvedName)
*resolvedName = nsTy->name(); *resolvedName = nsTy->name();
if (resolvedSymbol)
*resolvedSymbol = const_cast<Namespace *>(nsTy);
} else if (const Class *classTy = ty->asClassType()) { } else if (const Class *classTy = ty->asClassType()) {
if (resolvedName) if (resolvedName)
*resolvedName = classTy->name(); *resolvedName = classTy->name();
...@@ -233,14 +236,23 @@ static FullySpecifiedType resolve(const FullySpecifiedType &ty, ...@@ -233,14 +236,23 @@ static FullySpecifiedType resolve(const FullySpecifiedType &ty,
if (resolvedName) if (resolvedName)
*resolvedName = fwdClassTy->name(); *resolvedName = fwdClassTy->name();
if (resolvedSymbol)
*resolvedSymbol = const_cast<ForwardClassDeclaration *>(fwdClassTy);
} else if (const Enum *enumTy = ty->asEnumType()) { } else if (const Enum *enumTy = ty->asEnumType()) {
if (resolvedName) if (resolvedName)
*resolvedName = enumTy->name(); *resolvedName = enumTy->name();
if (resolvedSymbol)
*resolvedSymbol = const_cast<Enum *>(enumTy);
} else if (const Function *funTy = ty->asFunctionType()) { } else if (const Function *funTy = ty->asFunctionType()) {
if (resolvedName) if (resolvedName)
*resolvedName = funTy->name(); *resolvedName = funTy->name();
if (resolvedSymbol)
*resolvedSymbol = const_cast<Function *>(funTy);
} }
return ty; return ty;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment