26 references to AsClause
Microsoft.CodeAnalysis.VisualBasic (14)
Generated\Syntax.xml.Main.Generated.vb (2)
2216Dim newAsClause = DirectCast(Visit(node.AsClause), SimpleAsClauseSyntax) 2217If node.AsClause IsNot newAsClause Then anyChanges = True
Generated\Syntax.xml.Syntax.Generated.vb (9)
7699return Update(Me.Kind, attributeLists, Me.Modifiers, Me.DelegateKeyword, Me.SubOrFunctionKeyword, Me.Identifier, Me.TypeParameterList, Me.ParameterList, Me.AsClause) 7743return Update(Me.Kind, Me.AttributeLists, modifiers, Me.DelegateKeyword, Me.SubOrFunctionKeyword, Me.Identifier, Me.TypeParameterList, Me.ParameterList, Me.AsClause) 7769return Update(Me.Kind, Me.AttributeLists, Me.Modifiers, delegateKeyword, Me.SubOrFunctionKeyword, Me.Identifier, Me.TypeParameterList, Me.ParameterList, Me.AsClause) 7787return Update(Me.Kind, Me.AttributeLists, Me.Modifiers, Me.DelegateKeyword, subOrFunctionKeyword, Me.Identifier, Me.TypeParameterList, Me.ParameterList, Me.AsClause) 7805return Update(Me.Kind, Me.AttributeLists, Me.Modifiers, Me.DelegateKeyword, Me.SubOrFunctionKeyword, identifier, Me.TypeParameterList, Me.ParameterList, Me.AsClause) 7827return Update(Me.Kind, Me.AttributeLists, Me.Modifiers, Me.DelegateKeyword, Me.SubOrFunctionKeyword, Me.Identifier, typeParameterList, Me.ParameterList, Me.AsClause) 7862return Update(Me.Kind, Me.AttributeLists, Me.Modifiers, Me.DelegateKeyword, Me.SubOrFunctionKeyword, Me.Identifier, Me.TypeParameterList, parameterList, Me.AsClause) 7920Return Me.AsClause 7967If kind <> Me.Kind OrElse attributeLists <> Me.AttributeLists OrElse modifiers <> Me.Modifiers OrElse delegateKeyword <> Me.DelegateKeyword OrElse subOrFunctionKeyword <> Me.SubOrFunctionKeyword OrElse identifier <> Me.Identifier OrElse typeParameterList IsNot Me.TypeParameterList OrElse parameterList IsNot Me.ParameterList OrElse asClause IsNot Me.AsClause Then
Symbols\Source\SourceDelegateMethodSymbol.vb (1)
120Dim asClause = DirectCast(delegateSyntax.AsClause, SimpleAsClauseSyntax)
Syntax\SyntaxNodePartials.vb (1)
107Return DirectCast(Me, DelegateStatementSyntax).AsClause
VisualBasicDeclarationComputer.vb (1)
212Return DirectCast(methodBase, DelegateStatementSyntax).AsClause
Microsoft.CodeAnalysis.VisualBasic.CodeStyle (1)
StatementSyntaxExtensions.vb (1)
477Return DirectCast(member, DelegateStatementSyntax).AsClause
Microsoft.CodeAnalysis.VisualBasic.Features (1)
VisualBasicDeclarationComputer.vb (1)
212Return DirectCast(methodBase, DelegateStatementSyntax).AsClause
Microsoft.CodeAnalysis.VisualBasic.Syntax.UnitTests (2)
Generated\Syntax.Test.xml.Generated.vb (2)
19097Dim withObj = objectUnderTest.WithAttributeLists(objectUnderTest.AttributeLists).WithModifiers(objectUnderTest.Modifiers).WithDelegateKeyword(objectUnderTest.DelegateKeyword).WithSubOrFunctionKeyword(objectUnderTest.SubOrFunctionKeyword).WithIdentifier(objectUnderTest.Identifier).WithTypeParameterList(objectUnderTest.TypeParameterList).WithParameterList(objectUnderTest.ParameterList).WithAsClause(objectUnderTest.AsClause) 19107Dim withObj = objectUnderTest.WithAttributeLists(objectUnderTest.AttributeLists).WithModifiers(objectUnderTest.Modifiers).WithDelegateKeyword(objectUnderTest.DelegateKeyword).WithSubOrFunctionKeyword(objectUnderTest.SubOrFunctionKeyword).WithIdentifier(objectUnderTest.Identifier).WithTypeParameterList(objectUnderTest.TypeParameterList).WithParameterList(objectUnderTest.ParameterList).WithAsClause(objectUnderTest.AsClause)
Microsoft.CodeAnalysis.VisualBasic.Workspaces (3)
CodeGeneration\VisualBasicCodeGenerationService.vb (1)
716Dim newAsClause = UpdateSimpleAsClause(delegateStatementSyntax.AsClause, newType)
CodeGeneration\VisualBasicSyntaxGenerator.vb (1)
2294Return DirectCast(declaration, DelegateStatementSyntax).AsClause
StatementSyntaxExtensions.vb (1)
477Return DirectCast(member, DelegateStatementSyntax).AsClause
Microsoft.VisualStudio.LanguageServices.VisualBasic (5)
CodeModel\SyntaxExtensions.vb (1)
69asClause = DirectCast(method, DelegateStatementSyntax).AsClause
CodeModel\VisualBasicCodeModelService.vb (4)
3005asClause:=delegateStatement.AsClause) 3008If delegateStatement.AsClause IsNot Nothing Then 3009Debug.Assert(TypeOf delegateStatement.AsClause Is SimpleAsClauseSyntax) 3011Dim oldType = DirectCast(delegateStatement.AsClause, SimpleAsClauseSyntax).Type