Interface LogicalExpressionRefNode<T>

Syntax node representing a logical expression.

interface LogicalExpressionRefNode<T> {
    description?: string;
    left: RefSyntaxNode<T>;
    name?: string;
    operator: LogicalOperator;
    range: Range;
    ref: T;
    right: RefSyntaxNode<T>;
    type: LogicalExpression;
}

Type Parameters

  • T

Hierarchy (View Summary)

Properties

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.

The right argument of the logical expression.

The type of the syntax node.