[SourceKit] Introduce "source.lang.swift.expr.closure" in structure (SR-6116) (#13617)

This commit is contained in:
Marcelo Fabri
2018-01-04 10:45:29 -08:00
committed by Xi Ge
parent f2262bc276
commit b6ecf9c6d4
7 changed files with 48 additions and 16 deletions

View File

@@ -423,6 +423,8 @@ UIdent SwiftLangSupport::getUIDForSyntaxStructureKind(
return KindExprObjectLiteral;
case SyntaxStructureKind::TupleExpression:
return KindExprTuple;
case SyntaxStructureKind::ClosureExpression:
return KindExprClosure;
case SyntaxStructureKind::Argument:
return KindExprArg;
}