9 references to SyntaxIdentifierWithTrivia
Microsoft.CodeAnalysis.CSharp (9)
Syntax\InternalSyntax\SyntaxToken.SyntaxIdentifier.cs (2)
46
return new
SyntaxIdentifierWithTrivia
(this.Kind, this.TextField, this.TextField, trivia, null, this.GetDiagnostics(), this.GetAnnotations());
51
return new
SyntaxIdentifierWithTrivia
(this.Kind, this.TextField, this.TextField, null, trivia, this.GetDiagnostics(), this.GetAnnotations());
Syntax\InternalSyntax\SyntaxToken.SyntaxIdentifierExtended.cs (2)
49
return new
SyntaxIdentifierWithTrivia
(this.contextualKind, this.TextField, this.valueText, trivia, null, this.GetDiagnostics(), this.GetAnnotations());
54
return new
SyntaxIdentifierWithTrivia
(this.contextualKind, this.TextField, this.valueText, null, trivia, this.GetDiagnostics(), this.GetAnnotations());
Syntax\InternalSyntax\SyntaxToken.SyntaxIdentifierWithTrailingTrivia.cs (1)
42
return new
SyntaxIdentifierWithTrivia
(this.Kind, this.TextField, this.TextField, trivia, _trailing, this.GetDiagnostics(), this.GetAnnotations());
Syntax\InternalSyntax\SyntaxToken.SyntaxIdentifierWithTrivia.cs (4)
70
return new
SyntaxIdentifierWithTrivia
(this.contextualKind, this.TextField, this.valueText, trivia, _trailing, this.GetDiagnostics(), this.GetAnnotations());
75
return new
SyntaxIdentifierWithTrivia
(this.contextualKind, this.TextField, this.valueText, _leading, trivia, this.GetDiagnostics(), this.GetAnnotations());
80
return new
SyntaxIdentifierWithTrivia
(this.contextualKind, this.TextField, this.valueText, _leading, _trailing, diagnostics, this.GetAnnotations());
85
return new
SyntaxIdentifierWithTrivia
(this.contextualKind, this.TextField, this.valueText, _leading, _trailing, this.GetDiagnostics(), annotations);