mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-09 09:18:42 +09:00
Import Tycho weave client
This commit is contained in:
parent
e4ac0e17f8
commit
c53787dfdb
183 changed files with 7272 additions and 16759 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue