9 references to SyntaxIdentifierWithTrivia
Microsoft.CodeAnalysis.CSharp (9)
Syntax\InternalSyntax\SyntaxToken.SyntaxIdentifier.cs (2)
65
return new
SyntaxIdentifierWithTrivia
(this.Kind, this.TextField, this.TextField, trivia, null, this.GetDiagnostics(), this.GetAnnotations());
70
return new
SyntaxIdentifierWithTrivia
(this.Kind, this.TextField, this.TextField, null, trivia, this.GetDiagnostics(), this.GetAnnotations());
Syntax\InternalSyntax\SyntaxToken.SyntaxIdentifierExtended.cs (2)
69
return new
SyntaxIdentifierWithTrivia
(this.contextualKind, this.TextField, this.valueText, trivia, null, this.GetDiagnostics(), this.GetAnnotations());
74
return new
SyntaxIdentifierWithTrivia
(this.contextualKind, this.TextField, this.valueText, null, trivia, this.GetDiagnostics(), this.GetAnnotations());
Syntax\InternalSyntax\SyntaxToken.SyntaxIdentifierWithTrailingTrivia.cs (1)
67
return new
SyntaxIdentifierWithTrivia
(this.Kind, this.TextField, this.TextField, trivia, _trailing, this.GetDiagnostics(), this.GetAnnotations());
Syntax\InternalSyntax\SyntaxToken.SyntaxIdentifierWithTrivia.cs (4)
102
return new
SyntaxIdentifierWithTrivia
(this.contextualKind, this.TextField, this.valueText, trivia, _trailing, this.GetDiagnostics(), this.GetAnnotations());
107
return new
SyntaxIdentifierWithTrivia
(this.contextualKind, this.TextField, this.valueText, _leading, trivia, this.GetDiagnostics(), this.GetAnnotations());
112
return new
SyntaxIdentifierWithTrivia
(this.contextualKind, this.TextField, this.valueText, _leading, _trailing, diagnostics, this.GetAnnotations());
117
return new
SyntaxIdentifierWithTrivia
(this.contextualKind, this.TextField, this.valueText, _leading, _trailing, this.GetDiagnostics(), annotations);