Class UnionType

Union type.

Hierarchy

  • Type
    • UnionType

Constructors

  • Parameters

    • identifier: string
    • name: string
    • types: Type[]

    Returns UnionType

Accessors

  • get count(): number

    Get the number of types in the union type.

    Returns number

    The number of types in the union type.

  • get identifier(): string

    The syntax component identifier, i.e. NumberType.

    Returns string

    The identifier.

  • get name(): string

    The lexeme name of the type, i.e. int, number, string.

    Returns string

    The name.

  • get supported(): boolean

    Whether this type is supported by the current implementation. Usually, only InvalidType | InvalidType should be marked as unsupported.

    Returns boolean

    Whether the type is supported.

  • get types(): Type[]

    Get all types in the union type.

    Returns Type[]

    All types in the union type.