slang::syntax::ElseClauseSyntax struct
#include <AllSyntax.h>

Concrete syntax definition for an ElseClause.

Base classes

class SyntaxNode
Base class for all syntax nodes.

Public static functions

static auto isKind(SyntaxKind kind) -> bool
Returns true if the provided syntax kind is represented by this type.

Constructors, destructors, conversion operators

ElseClauseSyntax(Token elseKeyword, SyntaxNode& clause)
Constructs a new instance of the ElseClauseSyntax struct.
ElseClauseSyntax(const ElseClauseSyntax&) defaulted explicit
Copy constructor.

Public functions

auto getChild(size_t index) -> TokenOrSyntax
Gets the child member (token or syntax node) at the provided index within this struct.
auto getChild(size_t index) const -> ConstTokenOrSyntax
Gets the child member (token or syntax node) as a pointer at the provided index within this struct.
auto getChildPtr(size_t index) -> PtrTokenOrSyntax
Gets the child member (token or syntax node) at the provided index within this struct.
void setChild(size_t index, TokenOrSyntax child)
Sets the child member (token or syntax node) at the provided index within this struct.

Public variables

Token elseKeyword
The elseKeyword member.
not_null<SyntaxNode*> clause
The clause member.