Interface BinaryExpressionUpdatedNode<T>

Syntax node representing a binary expression.

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

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 binary expression.

name?: string

A descriptive name for the syntax node.

operator: BinaryOperator

The operator of the binary 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 binary expression.

The type of the syntax node.