Exemple #1
0
 private static IList <SymbolDisplayPart> GetMethodGroupPostambleParts()
 => SpecializedCollections.SingletonList(Punctuation(SyntaxKind.CloseParenToken));
Exemple #2
0
 private IList <SymbolDisplayPart> GetPostambleParts(IPropertySymbol indexer)
 {
     return(SpecializedCollections.SingletonList(
                Punctuation(SyntaxKind.CloseBracketToken)));
 }
 private IList <SymbolDisplayPart> GetPostambleParts()
 {
     return(SpecializedCollections.SingletonList(
                Punctuation(SyntaxKind.CloseParenToken)));
 }
 private IList <SymbolDisplayPart> GetDelegateTypePostambleParts(IMethodSymbol invokeMethod)
 {
     return(SpecializedCollections.SingletonList(
                Punctuation(SyntaxKind.CloseParenToken)));
 }
 private static IList <SymbolMarkupToken> GetMethodGroupPostambleParts(FunctionSymbol method)
 {
     return(SpecializedCollections.SingletonList(
                new SymbolMarkupToken(SymbolMarkupKind.Punctuation, ")")));
 }
 private static IList <SymbolDisplayPart> GetDelegateOrFunctionPointerInvokePostambleParts()
 {
     return(SpecializedCollections.SingletonList(
                Punctuation(SyntaxKind.CloseParenToken)));
 }