6 references to DotToken
Microsoft.CodeAnalysis.CSharp (3)
Syntax.xml.Main.Generated.cs (1)
2056
=> node.Update((NameSyntax?)Visit(node.Name) ?? throw new ArgumentNullException("name"), VisitToken(node.
DotToken
));
Syntax.xml.Syntax.Generated.cs (2)
12213
if (name != this.Name || dotToken != this.
DotToken
)
12223
public ExplicitInterfaceSpecifierSyntax WithName(NameSyntax name) => Update(name, this.
DotToken
);
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (3)
Generated\Syntax.Test.xml.Generated.cs (2)
13415
Assert.Equal(SyntaxKind.DotToken, node.
DotToken
.Kind());
13416
var newNode = node.WithName(node.Name).WithDotToken(node.
DotToken
);
Parsing\DeclarationParsingTests.cs (1)
5235
Assert.Equal(".", ps.ExplicitInterfaceSpecifier.
DotToken
.ToString());