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