7 references to Value
Microsoft.CodeAnalysis.CSharp (5)
Binder\Binder_InterpolatedString.cs (2)
101
alignment = GenerateConversionForAssignment(intType, BindValue(interpolation.AlignmentClause.
Value
, diagnostics, Binder.BindValueKind.RValue), diagnostics);
117
diagnostics.Add(ErrorCode.ERR_ConstantExpected, interpolation.AlignmentClause.
Value
.Location);
Syntax.xml.Main.Generated.cs (1)
1822
=> node.Update(VisitToken(node.CommaToken), (ExpressionSyntax?)Visit(node.
Value
) ?? throw new ArgumentNullException("value"));
Syntax.xml.Syntax.Generated.cs (2)
6097
if (commaToken != this.CommaToken || value != this.
Value
)
6107
public InterpolationAlignmentClauseSyntax WithCommaToken(SyntaxToken commaToken) => Update(commaToken, this.
Value
);
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (2)
Generated\Syntax.Test.xml.Generated.cs (2)
12349
Assert.NotNull(node.
Value
);
12350
var newNode = node.WithCommaToken(node.CommaToken).WithValue(node.
Value
);