dojox/lang/aspect/memoizerGuard.js

  • Provides:

    • dojox.lang.aspect.memoizerGuard
  • aop.memoizerGuard

    • summary
  • reset

    • type
      Function
    • parameters:
      • method: (typeof String|Array)
    • source: [view]
         var that = aop.getContext().instance, t;
         if(!(t = that.__memoizerCache)){ return; }
         if(arguments.length == 0){
          delete that.__memoizerCache;
         }else if(dojo.isArray(method)){
          dojo.forEach(method, function(m){ delete t[m]; });
         }else{
          delete t[method];
         }
    • summary
  • dojox.lang.aspect.memoizerGuard

    • type
      Object
    • summary
  • dojox.lang.aspect

    • type
      Object
    • summary
  • dojox.lang

    • type
      Object
    • summary
  • dojox

    • type
      Object
    • summary