20 references to OpenParenToken
Microsoft.CodeAnalysis.VisualBasic (10)
Generated\Syntax.xml.Main.Generated.vb (2)
4196
Dim newOpenParenToken = DirectCast(VisitToken(node.
OpenParenToken
).Node, InternalSyntax.PunctuationSyntax)
4197
If node.
OpenParenToken
.Node IsNot newOpenParenToken Then anyChanges = True
Generated\Syntax.xml.Syntax.Generated.vb (8)
25668
return Update(ifKeyword, Me.
OpenParenToken
, Me.Condition, Me.FirstCommaToken, Me.WhenTrue, Me.SecondCommaToken, Me.WhenFalse, Me.CloseParenToken)
25704
return Update(Me.IfKeyword, Me.
OpenParenToken
, condition, Me.FirstCommaToken, Me.WhenTrue, Me.SecondCommaToken, Me.WhenFalse, Me.CloseParenToken)
25722
return Update(Me.IfKeyword, Me.
OpenParenToken
, Me.Condition, firstCommaToken, Me.WhenTrue, Me.SecondCommaToken, Me.WhenFalse, Me.CloseParenToken)
25740
return Update(Me.IfKeyword, Me.
OpenParenToken
, Me.Condition, Me.FirstCommaToken, whenTrue, Me.SecondCommaToken, Me.WhenFalse, Me.CloseParenToken)
25758
return Update(Me.IfKeyword, Me.
OpenParenToken
, Me.Condition, Me.FirstCommaToken, Me.WhenTrue, secondCommaToken, Me.WhenFalse, Me.CloseParenToken)
25776
return Update(Me.IfKeyword, Me.
OpenParenToken
, Me.Condition, Me.FirstCommaToken, Me.WhenTrue, Me.SecondCommaToken, whenFalse, Me.CloseParenToken)
25794
return Update(Me.IfKeyword, Me.
OpenParenToken
, Me.Condition, Me.FirstCommaToken, Me.WhenTrue, Me.SecondCommaToken, Me.WhenFalse, closeParenToken)
25861
If ifKeyword <> Me.IfKeyword OrElse openParenToken <> Me.
OpenParenToken
OrElse condition IsNot Me.Condition OrElse firstCommaToken <> Me.FirstCommaToken OrElse whenTrue IsNot Me.WhenTrue OrElse secondCommaToken <> Me.SecondCommaToken OrElse whenFalse IsNot Me.WhenFalse OrElse closeParenToken <> Me.CloseParenToken Then
Microsoft.CodeAnalysis.VisualBasic.CodeStyle (2)
FormattingHelpers.vb (1)
315
Return ternaryCondition.
OpenParenToken
.Equals(token) OrElse ternaryCondition.CloseParenToken.Equals(token)
SyntaxNodeExtensions.vb (1)
805
Function(n As TernaryConditionalExpressionSyntax) (n.
OpenParenToken
, n.CloseParenToken),
Microsoft.CodeAnalysis.VisualBasic.CodeStyle.Fixes (2)
SyntaxTreeExtensions.vb (1)
424
targetToken.IsChildToken(Of TernaryConditionalExpressionSyntax)(Function(ternaryConditional) ternaryConditional.
OpenParenToken
) OrElse
VisualBasicTypeInferenceService.TypeInferrer.vb (1)
814
ElseIf previousToken = conditional.
OpenParenToken
Then
Microsoft.CodeAnalysis.VisualBasic.Syntax.UnitTests (2)
Generated\Syntax.Test.xml.Generated.vb (2)
20959
Assert.NotNull(objectUnderTest.
openParenToken
)
20966
Dim withObj = objectUnderTest.WithIfKeyword(objectUnderTest.IfKeyword).WithOpenParenToken(objectUnderTest.
OpenParenToken
).WithCondition(objectUnderTest.Condition).WithFirstCommaToken(objectUnderTest.FirstCommaToken).WithWhenTrue(objectUnderTest.WhenTrue).WithSecondCommaToken(objectUnderTest.SecondCommaToken).WithWhenFalse(objectUnderTest.WhenFalse).WithCloseParenToken(objectUnderTest.CloseParenToken)
Microsoft.CodeAnalysis.VisualBasic.Workspaces (4)
Formatting\FormattingHelpers.vb (1)
315
Return ternaryCondition.
OpenParenToken
.Equals(token) OrElse ternaryCondition.CloseParenToken.Equals(token)
J\s\src\Workspaces\SharedUtilitiesAndExtensions\Workspace\VisualBasic\Extensions\ContextQuery\SyntaxTreeExtensions.vb\SyntaxTreeExtensions.vb (1)
424
targetToken.IsChildToken(Of TernaryConditionalExpressionSyntax)(Function(ternaryConditional) ternaryConditional.
OpenParenToken
) OrElse
SyntaxNodeExtensions.vb (1)
805
Function(n As TernaryConditionalExpressionSyntax) (n.
OpenParenToken
, n.CloseParenToken),
VisualBasicTypeInferenceService.TypeInferrer.vb (1)
814
ElseIf previousToken = conditional.
OpenParenToken
Then