Import Tycho weave client

This commit is contained in:
wolfbeast 2018-10-06 06:57:51 +02:00 committed by Roy Tam
commit c53787dfdb
183 changed files with 7272 additions and 16759 deletions

View file

@ -27,23 +27,19 @@ function run_test() {
this._locked = false;
},
func: function() {
return this._lock("Test utils lock",
function() {
rightThis = this == obj;
didCall = true;
return 5;
})();
},
func: function() this._lock("Test utils lock",
function() {
rightThis = this == obj;
didCall = true;
return 5;
})(),
throwy: function() {
return this._lock("Test utils lock throwy",
function() {
rightThis = this == obj;
didCall = true;
this.throwy();
})();
}
throwy: function() this._lock("Test utils lock throwy",
function() {
rightThis = this == obj;
didCall = true;
this.throwy();
})()
};
_("Make sure a normal call will call and return");