Debugger file and hashing configuration.

interface IConfig {
    getCodeId(code, kernel): string;
    getTmpFileParams(kernel): FileParams;
    setHashParams(params): void;
    setTmpFileParams(params): 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

  • Sets the parameters used for the temp files (e.g. cells) for a kernel.

    Parameters

    • params: FileParams

      Temporary file prefix and suffix for a kernel.

    Returns void