Base:
property
EndOfDirectiveToken
Microsoft.CodeAnalysis.CSharp.Syntax.DirectiveTriviaSyntax.EndOfDirectiveToken
8 references to EndOfDirectiveToken
Microsoft.CodeAnalysis.CSharp (8)
_generated\0\Syntax.xml.Main.Generated.cs (1)
2221
=> node.Update(VisitToken(node.HashToken), VisitToken(node.IfKeyword), (ExpressionSyntax?)Visit(node.Condition) ?? throw new ArgumentNullException("condition"), VisitToken(node.
EndOfDirectiveToken
), node.IsActive, node.BranchTaken, node.ConditionValue);
_generated\2\Syntax.xml.Syntax.Generated.cs (7)
15926
if (hashToken != this.HashToken || ifKeyword != this.IfKeyword || condition != this.Condition || endOfDirectiveToken != this.
EndOfDirectiveToken
)
15937
public new IfDirectiveTriviaSyntax WithHashToken(SyntaxToken hashToken) => Update(hashToken, this.IfKeyword, this.Condition, this.
EndOfDirectiveToken
, this.IsActive, this.BranchTaken, this.ConditionValue);
15938
public IfDirectiveTriviaSyntax WithIfKeyword(SyntaxToken ifKeyword) => Update(this.HashToken, ifKeyword, this.Condition, this.
EndOfDirectiveToken
, this.IsActive, this.BranchTaken, this.ConditionValue);
15940
public new IfDirectiveTriviaSyntax WithCondition(ExpressionSyntax condition) => Update(this.HashToken, this.IfKeyword, condition, this.
EndOfDirectiveToken
, this.IsActive, this.BranchTaken, this.ConditionValue);
15943
public IfDirectiveTriviaSyntax WithIsActive(bool isActive) => Update(this.HashToken, this.IfKeyword, this.Condition, this.
EndOfDirectiveToken
, isActive, this.BranchTaken, this.ConditionValue);
15944
public IfDirectiveTriviaSyntax WithBranchTaken(bool branchTaken) => Update(this.HashToken, this.IfKeyword, this.Condition, this.
EndOfDirectiveToken
, this.IsActive, branchTaken, this.ConditionValue);
15945
public IfDirectiveTriviaSyntax WithConditionValue(bool conditionValue) => Update(this.HashToken, this.IfKeyword, this.Condition, this.
EndOfDirectiveToken
, this.IsActive, this.BranchTaken, conditionValue);