Home
last modified time | relevance | path

Searched refs:cacheInfo (Results 1 – 2 of 2) sorted by relevance

/developtools/ace_ets2bundle/compiler/test/ark_compiler_ut/mock/rollup_mock/
Dcache.ts22 private cacheInfo: Map<string, Object>; property in Cache
25 this.cacheInfo = new Map<string, Object>();
26 this.cacheInfo.set(ARK_COMPILER_META_INFO, {});
27 this.cacheInfo.set(IS_CACHE_INVALID, undefined);
33 if (this.cacheInfo.has(key)) {
34 return this.cacheInfo.get(key);
42 if (this.cacheInfo.has(key)) {
43 this.cacheInfo.set(key, value);
/developtools/ace_ets2bundle/compiler/src/
Dutils.ts819 const cacheInfo: { [id: string]: fileInfo } = cache.get('fileCacheInfo') || {}; constant
821 cacheInfo[id] = this.wholeFileInfo[id].fileInfo;
823 cache.set('fileCacheInfo', cacheInfo);
891 constructor(cacheInfo: fileInfo, etsFile?: boolean) {
893 this.fileInfo = cacheInfo || this.fileInfo;
908 constructor(cacheInfo?: fileInfo) {
909 super(cacheInfo, true);
910 this.fileInfo = cacheInfo || this.fileInfo;