public IdentifierNameExpressionNode(KSyntaxToken identifier) { Kind = KSyntaxKind.IdentifierNameExpression; Identifier = identifier; }
public EqualsValueClauseNode WithIsKeyword(KSyntaxToken isToken) { isToken.Parent = this; IsToken = isToken; return(this); }
public LiteralExpressionNode(KSyntaxKind kind, KSyntaxToken token) { Kind = kind; Token = token; }
public FieldDeclarationNode WithPeriod(KSyntaxToken period) { period.Parent = this; PeriodToken = period; return(this); }
public PredefinedTypeNode WithKeyword(KSyntaxToken keyword) { keyword.Parent = this; Keyword = keyword; return(this); }
public VariableDeclaratorNode WithIdentifier(KSyntaxToken identifier) { identifier.Parent = this; Identifier = identifier; return(this); }
public ArgumentListNode WithCloseParenToken(KSyntaxToken closeParentToken) { closeParentToken.Parent = this; CloseParenToken = closeParentToken; return(this); }
public ArgumentListNode WithOpenParenToken(KSyntaxToken openParentToken) { openParentToken.Parent = this; OpenParenToken = openParentToken; return(this); }
public AssignmentExpressionNode WithTo(KSyntaxToken token) { token.Parent = this; To = token; return(this); }