12 references to Expression
Microsoft.CodeAnalysis.CSharp (8)
_generated\0\Syntax.xml.Main.Generated.cs (1)
1638
=> node.Update(VisitToken(node.Keyword), VisitToken(node.OpenParenToken), (ExpressionSyntax?)Visit(node.
Expression
) ?? throw new ArgumentNullException("expression"), VisitToken(node.CloseParenToken));
_generated\2\Syntax.xml.Syntax.Generated.cs (4)
2293
if (keyword != this.Keyword || openParenToken != this.OpenParenToken || expression != this.
Expression
|| closeParenToken != this.CloseParenToken)
2303
public CheckedExpressionSyntax WithKeyword(SyntaxToken keyword) => Update(keyword, this.OpenParenToken, this.
Expression
, this.CloseParenToken);
2304
public CheckedExpressionSyntax WithOpenParenToken(SyntaxToken openParenToken) => Update(this.Keyword, openParenToken, this.
Expression
, this.CloseParenToken);
2306
public CheckedExpressionSyntax WithCloseParenToken(SyntaxToken closeParenToken) => Update(this.Keyword, this.OpenParenToken, this.
Expression
, closeParenToken);
Binder\Binder_Expressions.cs (1)
7593
return binder.BindParenthesizedExpression(node.
Expression
, diagnostics);
Binder\LocalBinderFactory.cs (1)
674
Visit(node.
Expression
, binder);
Compilation\MemberSemanticModel.cs (1)
2231
node = n.
Expression
;
Microsoft.CodeAnalysis.CSharp.CodeStyle (1)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Utilities\TypeStyle\CSharpUseImplicitTypeHelper.cs (1)
319
current = (current as CheckedExpressionSyntax)?.
Expression
?? current;
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Utilities\TypeStyle\CSharpUseImplicitTypeHelper.cs (1)
319
current = (current as CheckedExpressionSyntax)?.
Expression
?? current;
Microsoft.Interop.SourceGeneration (1)
Marshalling\ElementsMarshalling.cs (1)
80
numElementsExpression = ((CheckedExpressionSyntax)numElementsExpression).
Expression
;
Roslyn.Diagnostics.CSharp.Analyzers (1)
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Utilities\TypeStyle\CSharpUseImplicitTypeHelper.cs (1)
319
current = (current as CheckedExpressionSyntax)?.
Expression
?? current;