Interface FunctionDeclarationUpdatedNode<T>

Syntax node representing a function declaration.

interface FunctionDeclarationUpdatedNode<T> {
    changed?: true;
    created?: true;
    description?: string;
    name?: string;
    range?: Range;
    ref?: T;
    removed?: true;
    type: FunctionDeclaration;
}

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.

name?: string

A descriptive name for the syntax node.

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.