3 types derived from CastExpressionSyntax
Microsoft.CodeAnalysis.VisualBasic (3)
Generated\Syntax.xml.Internal.Generated.vb (3)
17792Inherits CastExpressionSyntax 17851Inherits CastExpressionSyntax 17910Inherits CastExpressionSyntax
9 instantiations of CastExpressionSyntax
Microsoft.CodeAnalysis.VisualBasic (9)
Generated\Syntax.xml.Internal.Generated.vb (9)
17796MyBase.New(kind, keyword, openParenToken, expression, commaToken, type, closeParenToken) 17801MyBase.New(kind, keyword, openParenToken, expression, commaToken, type, closeParenToken) 17807MyBase.New(kind, errors, annotations, keyword, openParenToken, expression, commaToken, type, closeParenToken) 17855MyBase.New(kind, keyword, openParenToken, expression, commaToken, type, closeParenToken) 17860MyBase.New(kind, keyword, openParenToken, expression, commaToken, type, closeParenToken) 17866MyBase.New(kind, errors, annotations, keyword, openParenToken, expression, commaToken, type, closeParenToken) 17914MyBase.New(kind, keyword, openParenToken, expression, commaToken, type, closeParenToken) 17919MyBase.New(kind, keyword, openParenToken, expression, commaToken, type, closeParenToken) 17925MyBase.New(kind, errors, annotations, keyword, openParenToken, expression, commaToken, type, closeParenToken)
13 references to CastExpressionSyntax
Microsoft.CodeAnalysis.VisualBasic (13)
Generated\Syntax.xml.Internal.Generated.vb (1)
29376Public Overridable Function VisitCastExpression(ByVal node As CastExpressionSyntax) As VisualBasicSyntaxNode
Generated\Syntax.xml.Syntax.Generated.vb (4)
24139return new SyntaxToken(Me, DirectCast(Me.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.CastExpressionSyntax)._keyword, Me.Position, 0) 24162return new SyntaxToken(Me, DirectCast(Me.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.CastExpressionSyntax)._openParenToken, Me.GetChildPosition(1), Me.GetChildIndex(1)) 24208return new SyntaxToken(Me, DirectCast(Me.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.CastExpressionSyntax)._commaToken, Me.GetChildPosition(3), Me.GetChildIndex(3)) 24253return new SyntaxToken(Me, DirectCast(Me.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.CastExpressionSyntax)._closeParenToken, Me.GetChildPosition(5), Me.GetChildIndex(5))
Parser\ParseExpression.vb (2)
1586Private Function ParseCast() As CastExpressionSyntax 1621Dim cast As CastExpressionSyntax = Nothing
Preprocessor\ExpressionEvaluator.vb (6)
167Return EvaluateCTypeExpression(DirectCast(expr, CastExpressionSyntax)) 170Return EvaluateDirectCastExpression(DirectCast(expr, CastExpressionSyntax)) 173Return EvaluateTryCastExpression(DirectCast(expr, CastExpressionSyntax)) 407Private Function EvaluateTryCastExpression(expr As CastExpressionSyntax) As CConst 438Private Function EvaluateDirectCastExpression(expr As CastExpressionSyntax) As CConst 467Private Function EvaluateCTypeExpression(expr As CastExpressionSyntax) As CConst