chevrotain
Version:
Chevrotain is a high performance fault tolerant javascript parsing DSL for building recursive decent parsers
14 lines • 510 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var cache_1 = require("./cache");
/**
* Clears the chevrotain internal cache.
* This should not be used in regular work flows, This is intended for
* unique use cases for example: online playground where the a parser with the same name is initialized with
* different implementations multiple times.
*/
function clearCache() {
cache_1.clearCache();
}
exports.clearCache = clearCache;
//# sourceMappingURL=cache_public.js.map