17 references to OpenParenToken
Microsoft.CodeAnalysis.CSharp (4)
Syntax.xml.Main.Generated.cs (1)
2032=> node.Update(VisitToken(node.NewKeyword), VisitToken(node.OpenParenToken), VisitToken(node.CloseParenToken));
Syntax.xml.Syntax.Generated.cs (3)
11744if (newKeyword != this.NewKeyword || openParenToken != this.OpenParenToken || closeParenToken != this.CloseParenToken) 11754public ConstructorConstraintSyntax WithNewKeyword(SyntaxToken newKeyword) => Update(newKeyword, this.OpenParenToken, this.CloseParenToken); 11756public ConstructorConstraintSyntax WithCloseParenToken(SyntaxToken closeParenToken) => Update(this.NewKeyword, this.OpenParenToken, closeParenToken);
Microsoft.CodeAnalysis.CSharp.CodeStyle (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Extensions\SyntaxNodeExtensions.cs (1)
721ConstructorConstraintSyntax n => (n.OpenParenToken, n.CloseParenToken),
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (10)
Generated\Syntax.Test.xml.Generated.cs (2)
13323Assert.Equal(SyntaxKind.OpenParenToken, node.OpenParenToken.Kind()); 13325var newNode = node.WithNewKeyword(node.NewKeyword).WithOpenParenToken(node.OpenParenToken).WithCloseParenToken(node.CloseParenToken);
Parsing\DeclarationParsingTests.cs (8)
1239Assert.NotEqual(default, bound.OpenParenToken); 1240Assert.False(bound.OpenParenToken.IsMissing); 1377Assert.NotEqual(default, bound.OpenParenToken); 1378Assert.False(bound.OpenParenToken.IsMissing); 1432Assert.NotEqual(default, bound.OpenParenToken); 1433Assert.False(bound.OpenParenToken.IsMissing); 1582Assert.NotEqual(default, bound.OpenParenToken); 1583Assert.False(bound.OpenParenToken.IsMissing);
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Extensions\SyntaxNodeExtensions.cs (1)
721ConstructorConstraintSyntax n => (n.OpenParenToken, n.CloseParenToken),
Roslyn.Diagnostics.CSharp.Analyzers (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Extensions\SyntaxNodeExtensions.cs (1)
721ConstructorConstraintSyntax n => (n.OpenParenToken, n.CloseParenToken),