Interface LogicalExpressionUpdatedNode<T>

Syntax node representing a logical expression.

interface LogicalExpressionUpdatedNode<T> {
    changed?: true;
    created?: true;
    description?: string;
    left: UpdatedSyntaxNode<T>;
    name?: string;
    operator: LogicalOperator;
    range?: Range;
    ref?: T;
    removed?: true;
    right: UpdatedSyntaxNode<T>;
    type: LogicalExpression;
}

Type Parameters

  • T

Hierarchy (View Summary)

Properties

changed?: true

Wether the syntax node has been updated.

created?: true

Wether the syntax node has been added.

description?: string

Additional description for the syntax node.

The left argument of the logical expression.

name?: string

A descriptive name for the syntax node.

operator: LogicalOperator

The operator of the logical expression.

range?: Range

The range of the code represented by the syntax node.

ref?: T

The original syntax node.

removed?: true

Wether the syntax node has been removed.

The right argument of the logical expression.

The type of the syntax node.