6 references to ExclamationToken
Microsoft.CodeAnalysis.CSharp (6)
_generated\0\Syntax.xml.Main.Generated.cs (1)
2251
=> node.Update(VisitToken(node.HashToken), VisitToken(node.
ExclamationToken
), VisitToken(node.EndOfDirectiveToken), node.IsActive);
_generated\2\Syntax.xml.Syntax.Generated.cs (4)
16681
if (hashToken != this.HashToken || exclamationToken != this.
ExclamationToken
|| endOfDirectiveToken != this.EndOfDirectiveToken)
16692
public new ShebangDirectiveTriviaSyntax WithHashToken(SyntaxToken hashToken) => Update(hashToken, this.
ExclamationToken
, this.EndOfDirectiveToken, this.IsActive);
16695
public new ShebangDirectiveTriviaSyntax WithEndOfDirectiveToken(SyntaxToken endOfDirectiveToken) => Update(this.HashToken, this.
ExclamationToken
, endOfDirectiveToken, this.IsActive);
16696
public ShebangDirectiveTriviaSyntax WithIsActive(bool isActive) => Update(this.HashToken, this.
ExclamationToken
, this.EndOfDirectiveToken, isActive);
Syntax\DirectiveTriviaSyntax.cs (1)
58
return ((ShebangDirectiveTriviaSyntax)this).
ExclamationToken
;