//>>built define("dojox/collections/Stack",["dojo/_base/kernel","dojo/_base/array","./_base"],function(_1,_2,_3){ _3.Stack=function(_4){ var q=[]; if(_4){ q=q.concat(_4); } this.count=q.length; this.clear=function(){ q=[]; this.count=q.length; }; this.clone=function(){ return new _3.Stack(q); }; this.contains=function(o){ for(var i=0;i