[SourceKit] Add associatedtype to doc structure (SR-5700)

This commit is contained in:
Marcelo Fabri
2017-08-16 23:40:36 +02:00
parent a81aa19be3
commit 8b9b49fdf3
7 changed files with 58 additions and 1 deletions

View File

@@ -381,6 +381,8 @@ UIdent SwiftLangSupport::getUIDForSyntaxStructureKind(
return KindDeclTypeAlias;
case SyntaxStructureKind::Subscript:
return KindDeclSubscript;
case SyntaxStructureKind::AssociatedType:
return KindDeclAssociatedType;
case SyntaxStructureKind::Parameter:
return KindDeclVarParam;
case SyntaxStructureKind::ForEachStatement: