Interface UnaryExpressionUpdatedNode<T>

Syntax node representing a unary expression.

interface UnaryExpressionUpdatedNode<T> {
    argument: UpdatedSyntaxNode<T>;
    changed?: true;
    created?: true;
    description?: string;
    name?: string;
    operator: UnaryOperator;
    range?: Range;
    ref?: T;
    removed?: true;
    type: UnaryExpression;
}

Type Parameters

  • T

Hierarchy (View Summary)

Properties

argument: UpdatedSyntaxNode<T>

The argument of the unary expression.

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.

name?: string

A descriptive name for the syntax node.

operator: UnaryOperator

The operator of the unary 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 type of the syntax node.