SyntaxElement

Type Alias SyntaxElement 

Source
pub type SyntaxElement = SyntaxElement<WorkflowDescriptionLanguage>;
Expand description

Represents an element (node or token) in the concrete syntax tree.

Aliased Type§

pub enum SyntaxElement {
    Node(SyntaxNode<WorkflowDescriptionLanguage>),
    Token(SyntaxToken<WorkflowDescriptionLanguage>),
}

Variants§