Skip to content
This repository has been archived by the owner on Apr 30, 2020. It is now read-only.

Commit

Permalink
Small method see fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerrit Gazic committed May 15, 2016
1 parent 4956f6f commit 015f17d
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,12 @@ internal void ResolveAllSeeTokens()
}
break;
default:
//TODO See parsing, if type is generic
seeToken.Name = splitted.Last();
seeToken.Namespace = string.Join(".", splitted.Take(splitted.Length - 2));
seeToken.DeclaringType = splitted[splitted.Length - 2];
seeToken.Text = splitted.Last();
seeToken.Identifier = $"{seeToken.Namespace}.{seeToken.DeclaringType}.{seeToken.Name}";

if (seeToken.Name.Contains('`'))
{
Expand Down

0 comments on commit 015f17d

Please sign in to comment.