11 references to Expression
Microsoft.CodeAnalysis.VisualBasic (7)
Binding\Binder_Statements.vb (1)
2676
Dim boundExpression As BoundExpression = BindRValue(printStmt.
Expression
, diagnostics)
Compilation\VisualBasicCompilation.vb (1)
838
Dim expression = DirectCast(lastStatement, PrintStatementSyntax).
Expression
Generated\Syntax.xml.Main.Generated.vb (2)
2717
Dim newExpression = DirectCast(Visit(node.
Expression
), ExpressionSyntax)
2718
If node.
Expression
IsNot newExpression Then anyChanges = True
Generated\Syntax.xml.Syntax.Generated.vb (3)
12627
return Update(questionToken, Me.
Expression
)
12660
Return Me.
Expression
12686
If questionToken <> Me.QuestionToken OrElse expression IsNot Me.
Expression
Then
Microsoft.CodeAnalysis.VisualBasic.ExpressionEvaluator.ExpressionCompiler (2)
CompilationContext.vb (1)
154
BindExpression(binder, DirectCast(syntax, PrintStatementSyntax).
Expression
, diags, properties),
SyntaxHelpers.vb (1)
28
If ParseFormatSpecifiers(builder, expr, syntax.
Expression
.FullWidth, diagnostics) AndAlso builder.Count > 0 Then
Microsoft.CodeAnalysis.VisualBasic.Syntax.UnitTests (2)
Generated\Syntax.Test.xml.Generated.vb (2)
19391
Assert.NotNull(objectUnderTest.
expression
)
19392
Dim withObj = objectUnderTest.WithQuestionToken(objectUnderTest.QuestionToken).WithExpression(objectUnderTest.
Expression
)