Class UnknownType

Unknown type represents a type that cannot be determined.

It is not InvalidType, which cannot be parsed from the AST JSON.

Hierarchy

  • Type
    • UnknownType

Constructors

Accessors

Constructors

Accessors

  • 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.