8 instantiations of CatchStatementSyntax
Microsoft.CodeAnalysis.VisualBasic (8)
Generated\Syntax.xml.Internal.Generated.vb (7)
14217
Friend Shared CreateInstance As Func(Of ObjectReader, Object) = Function(o) New
CatchStatementSyntax
(o)
14229
ObjectBinder.RegisterTypeReader(GetType(CatchStatementSyntax), Function(r) New
CatchStatementSyntax
(r))
14300
Return new
CatchStatementSyntax
(Me.Kind, newErrors, GetAnnotations, _catchKeyword, _identifierName, _asClause, _whenClause)
14304
Return new
CatchStatementSyntax
(Me.Kind, GetDiagnostics, annotations, _catchKeyword, _identifierName, _asClause, _whenClause)
39362
Return New
CatchStatementSyntax
(node.Kind, node.GetDiagnostics, node.GetAnnotations, newCatchKeyword, newIdentifierName, newAsClause, newWhenClause)
46747
Return New
CatchStatementSyntax
(SyntaxKind.CatchStatement, catchKeyword, identifierName, asClause, whenClause)
58825
Return New
CatchStatementSyntax
(SyntaxKind.CatchStatement, catchKeyword, identifierName, asClause, whenClause, _factoryContext)
Generated\Syntax.xml.Syntax.Generated.vb (1)
15779
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.
CatchStatementSyntax
(kind, errors, annotations, catchKeyword, if(identifierName IsNot Nothing, DirectCast(identifierName.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.IdentifierNameSyntax), Nothing), if(asClause IsNot Nothing, DirectCast(asClause.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.SimpleAsClauseSyntax), Nothing), if(whenClause IsNot Nothing, DirectCast(whenClause.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.CatchFilterClauseSyntax), Nothing)), Nothing, 0)
19 references to CatchStatementSyntax
Microsoft.CodeAnalysis.VisualBasic (18)
Generated\Syntax.xml.Internal.Generated.vb (14)
13995
Friend ReadOnly _catchStatement as
CatchStatementSyntax
13998
Friend Sub New(ByVal kind As SyntaxKind, catchStatement As
CatchStatementSyntax
, statements As GreenNode)
14011
Friend Sub New(ByVal kind As SyntaxKind, catchStatement As
CatchStatementSyntax
, statements As GreenNode, context As ISyntaxFactoryContext)
14025
Friend Sub New(ByVal kind As SyntaxKind, ByVal errors as DiagnosticInfo(), ByVal annotations as SyntaxAnnotation(), catchStatement As
CatchStatementSyntax
, statements As GreenNode)
14041
Dim _catchStatement = DirectCast(reader.ReadValue(),
CatchStatementSyntax
)
14072
Friend ReadOnly Property CatchStatement As InternalSyntax.
CatchStatementSyntax
14229
ObjectBinder.RegisterTypeReader(GetType(
CatchStatementSyntax
), Function(r) New CatchStatementSyntax(r))
37044
Public Overridable Function VisitCatchStatement(ByVal node As
CatchStatementSyntax
) As VisualBasicSyntaxNode
39337
Dim newCatchStatement = DirectCast(Visit(node._catchStatement),
CatchStatementSyntax
)
39349
Public Overrides Function VisitCatchStatement(ByVal node As
CatchStatementSyntax
) As VisualBasicSyntaxNode
46711
Friend Shared Function CatchBlock(catchStatement As
CatchStatementSyntax
, statements As Global.Microsoft.CodeAnalysis.Syntax.InternalSyntax.SyntaxList(of GreenNode)) As CatchBlockSyntax
46745
Friend Shared Function CatchStatement(catchKeyword As KeywordSyntax, identifierName As IdentifierNameSyntax, asClause As SimpleAsClauseSyntax, whenClause As CatchFilterClauseSyntax) As
CatchStatementSyntax
58789
Friend Function CatchBlock(catchStatement As
CatchStatementSyntax
, statements As Global.Microsoft.CodeAnalysis.Syntax.InternalSyntax.SyntaxList(of GreenNode)) As CatchBlockSyntax
58823
Friend Function CatchStatement(catchKeyword As KeywordSyntax, identifierName As IdentifierNameSyntax, asClause As SimpleAsClauseSyntax, whenClause As CatchFilterClauseSyntax) As
CatchStatementSyntax
Generated\Syntax.xml.Syntax.Generated.vb (2)
15653
Me.New(New Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.CatchBlockSyntax(kind, errors, annotations, DirectCast(catchStatement.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.
CatchStatementSyntax
), if(statements IsNot Nothing, statements.Green, Nothing)), Nothing, 0)
15787
return new SyntaxToken(Me, DirectCast(Me.Green, Microsoft.CodeAnalysis.VisualBasic.Syntax.InternalSyntax.
CatchStatementSyntax
)._catchKeyword, Me.Position, 0)
Parser\BlockContexts\CatchPartContext.vb (1)
55
Dim result = SyntaxFactory.CatchBlock(DirectCast(BeginStatement,
CatchStatementSyntax
), Me.Body())
Parser\ParseStatement.vb (1)
1452
Private Function ParseCatch() As
CatchStatementSyntax
Microsoft.CodeAnalysis.VisualBasic.Syntax.UnitTests (1)
Generated\Syntax.Test.xml.Generated.vb (1)
583
Private Shared Function GenerateGreenCatchStatement() As InternalSyntax.
CatchStatementSyntax