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

@ -9,21 +9,17 @@ function run_test() {
trace: function() {}
},
func: function() {
return this.notify("bar", "baz", function() {
rightThis = this == obj;
didCall = true;
return 5;
})();
},
func: function() this.notify("bar", "baz", function() {
rightThis = this == obj;
didCall = true;
return 5;
})(),
throwy: function() {
return this.notify("bad", "one", function() {
rightThis = this == obj;
didCall = true;
throw 10;
})();
}
throwy: function() this.notify("bad", "one", function() {
rightThis = this == obj;
didCall = true;
throw 10;
})()
};
let state = 0;