The handle for any expression in the system.

interface U {
    end?: number;
    name: string;
    pos?: number;
    get iscons(): boolean;
    get isnil(): boolean;
    addRef(): void;
    contains(needle): boolean;
    equals(other): boolean;
    release(): void;
}

Hierarchy (view full)

Implemented by

Properties

Accessors

Methods

Properties

end?: number
name: string

Contains the name of the type.

pos?: number

Accessors

  • get iscons(): boolean
  • Returns boolean

  • get isnil(): boolean
  • Returns boolean

Methods

  • Parameters

    • needle: U

    Returns boolean

  • Parameters

    • other: U

    Returns boolean