public dispose()

in src/util/languageModelCache.ts [80:87]


    public dispose(): void {
        if (typeof this.cleanupInterval !== "undefined") {
            clearInterval(this.cleanupInterval);
            this.cleanupInterval = undefined;
            this.languageModels = {};
            this.nModels = 0;
        }
    }