/** Enum representing valid ternary operators. */
export enum TernaryOperator
{
    /** The standard conditional (ternary) operator. */
    Question = '?:',

    /** Indicates an unknown or invalid ternary operator. */
    Unknown = 'xx'
}
