10 references to AsClause
Microsoft.CodeAnalysis.VisualBasic (8)
Binding\DocumentationCommentCrefBinder.vb (2)
474
If reference.
AsClause
IsNot Nothing Then
475
returnType = typeParameterAwareBinder.BindTypeSyntax(reference.
AsClause
.Type, diagnostic)
Generated\Syntax.xml.Main.Generated.vb (2)
5140
Dim newAsClause = DirectCast(Visit(node.
AsClause
), SimpleAsClauseSyntax)
5141
If node.
AsClause
IsNot newAsClause Then anyChanges = True
Generated\Syntax.xml.Syntax.Generated.vb (4)
33769
return Update(name, Me.Signature, Me.
AsClause
)
33787
return Update(Me.Name, signature, Me.
AsClause
)
33833
Return Me.
AsClause
33862
If name IsNot Me.Name OrElse signature IsNot Me.Signature OrElse asClause IsNot Me.
AsClause
Then
Microsoft.CodeAnalysis.VisualBasic.Symbol.UnitTests (1)
DocumentationComments\DocCommentTests.vb (1)
11992
Debug.Assert(cref.Signature IsNot Nothing OrElse cref.
AsClause
Is Nothing)
Microsoft.CodeAnalysis.VisualBasic.Syntax.UnitTests (1)
Generated\Syntax.Test.xml.Generated.vb (1)
21538
Dim withObj = objectUnderTest.WithName(objectUnderTest.Name).WithSignature(objectUnderTest.Signature).WithAsClause(objectUnderTest.
AsClause
)