11 references to InterpolatedStringArgumentPlaceholderKind
Microsoft.CodeAnalysis (8)
Generated\Operations.Generated.cs (4)
3728/// -1 if <see cref="PlaceholderKind" /> is anything other than <see cref="InterpolatedStringArgumentPlaceholderKind.CallsiteArgument" />. 3734InterpolatedStringArgumentPlaceholderKind PlaceholderKind { get; } 10310internal InterpolatedStringHandlerArgumentPlaceholderOperation(int argumentIndex, InterpolatedStringArgumentPlaceholderKind placeholderKind, SemanticModel? semanticModel, SyntaxNode syntax, bool isImplicit) 10317public InterpolatedStringArgumentPlaceholderKind PlaceholderKind { get; }
Operations\ControlFlowGraphBuilder.cs (4)
6851if (arguments[i] is { Value: IInterpolatedStringHandlerArgumentPlaceholderOperation { PlaceholderKind: InterpolatedStringArgumentPlaceholderKind.TrailingValidityArgument } } arg) 7001case InterpolatedStringArgumentPlaceholderKind.TrailingValidityArgument: 7006case InterpolatedStringArgumentPlaceholderKind.CallsiteReceiver: 7021case InterpolatedStringArgumentPlaceholderKind.CallsiteArgument:
Microsoft.CodeAnalysis.CSharp (3)
Operations\CSharpOperationFactory.cs (3)
2562>= 0 and var index => (InterpolatedStringArgumentPlaceholderKind.CallsiteArgument, index), 2563BoundInterpolatedStringArgumentPlaceholder.InstanceParameter or BoundInterpolatedStringArgumentPlaceholder.ExtensionReceiver => (InterpolatedStringArgumentPlaceholderKind.CallsiteReceiver, NonArgumentIndex), 2564BoundInterpolatedStringArgumentPlaceholder.TrailingConstructorValidityParameter => (InterpolatedStringArgumentPlaceholderKind.TrailingValidityArgument, NonArgumentIndex),