Interface ProgramControl

interface ProgramControl {
    compareFn(opr): CompareFn;
    getDirective(directive): number;
    getSymbolPrintName(sym): string;
    popDirective(): void;
    pushDirective(directive, value): void;
}

Methods