Exemple #1
0
Concat.prototype.getCacheDir = function () {
  return quickTemp.makeOrReuse(this, 'tmpCacheDir')
}
 function UnstableOutputPathTree(inputTree) {
   this._inputTree = inputTree;
   quickTemp.makeOrReuse(this, 'outputBasePath');
   this._buildCount = 0;
 }
 function StableOutputPathTree(inputTree) {
   this._inputTree = inputTree;
   quickTemp.makeOrReuse(this, 'outputPath');
 }
Exemple #4
0
CachingWriter.prototype.getCacheDir = function () {
  return quickTemp.makeOrReuse(this, 'tmpCacheDir');
};