Merge remote-tracking branch 'upstream/master'

This commit is contained in:
Anton Danilkin
2018-09-07 13:46:20 +03:00
46 changed files with 1293 additions and 360 deletions

View File

@ -153,3 +153,13 @@ global.MixinFoo = class MixinFoo {
global.Overloads = class {
foo() {}
};
global.InvokeCallback = class {
invoke(f) { f(); }
callAdd(f) {
return f(1, 2);
}
callRepeat(f) {
return f('ab', 4);
}
};