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)
12213if (name != this.Name || dotToken != this.DotToken) 12223public ExplicitInterfaceSpecifierSyntax WithName(NameSyntax name) => Update(name, this.DotToken);
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (3)
Generated\Syntax.Test.xml.Generated.cs (2)
13415Assert.Equal(SyntaxKind.DotToken, node.DotToken.Kind()); 13416var newNode = node.WithName(node.Name).WithDotToken(node.DotToken);
Parsing\DeclarationParsingTests.cs (1)
5235Assert.Equal(".", ps.ExplicitInterfaceSpecifier.DotToken.ToString());