[SourceKit] Add GenericTypeParam to structure (SR-5474) (#13616)

This commit is contained in:
Marcelo Fabri
2018-01-09 17:28:52 -08:00
committed by Xi Ge
parent 95f09d057e
commit 94465a38c0
8 changed files with 77 additions and 31 deletions

View File

@@ -395,6 +395,8 @@ UIdent SwiftLangSupport::getUIDForSyntaxStructureKind(
return KindDeclSubscript;
case SyntaxStructureKind::AssociatedType:
return KindDeclAssociatedType;
case SyntaxStructureKind::GenericTypeParam:
return KindDeclGenericTypeParam;
case SyntaxStructureKind::Parameter:
return KindDeclVarParam;
case SyntaxStructureKind::ForEachStatement: