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

@ -6,12 +6,8 @@ function run_test() {
base.prototype = {
dst: {},
get a() {
return "a";
},
set b(val) {
this.dst.b = val + "!!!";
}
get a() "a",
set b(val) this.dst.b = val + "!!!"
};
let src = new base();