8 references to Line
Microsoft.CodeAnalysis.CSharp (7)
_generated\0\Syntax.xml.Main.Generated.cs (1)
2233
=> node.Update(VisitToken(node.OpenParenToken), VisitToken(node.
Line
), VisitToken(node.CommaToken), VisitToken(node.Character), VisitToken(node.CloseParenToken));
_generated\2\Syntax.xml.Syntax.Generated.cs (5)
16313
if (openParenToken != this.OpenParenToken || line != this.
Line
|| commaToken != this.CommaToken || character != this.Character || closeParenToken != this.CloseParenToken)
16323
public LineDirectivePositionSyntax WithOpenParenToken(SyntaxToken openParenToken) => Update(openParenToken, this.
Line
, this.CommaToken, this.Character, this.CloseParenToken);
16325
public LineDirectivePositionSyntax WithCommaToken(SyntaxToken commaToken) => Update(this.OpenParenToken, this.
Line
, commaToken, this.Character, this.CloseParenToken);
16326
public LineDirectivePositionSyntax WithCharacter(SyntaxToken character) => Update(this.OpenParenToken, this.
Line
, this.CommaToken, character, this.CloseParenToken);
16327
public LineDirectivePositionSyntax WithCloseParenToken(SyntaxToken closeParenToken) => Update(this.OpenParenToken, this.
Line
, this.CommaToken, this.Character, closeParenToken);
Syntax\CSharpLineDirectiveMap.cs (1)
163
if (tryGetNumericLiteralValue(syntax.
Line
, out int line, oneBased: true) &&
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
Classification\Worker_Preprocesser.cs (1)
279
AddClassification(node.
Line
, ClassificationTypeNames.NumericLiteral);