Debugger file and hashing configuration.

interface IConfig {
    getCodeId(code: string, kernel: string): string;
    getTmpFileParams(kernel: string): FileParams;
    setHashParams(params: HashParams): void;
    setTmpFileParams(params: FileParams): void;
}

Methods

  • Returns an id based on the given code.

    Parameters

    • code: string

      The source code.

    • kernel: string

      The kernel name from current session.

    Returns string