UNPKG

jsctags

Version:
11 lines (8 loc) 225 B
// Verify that the binding of `this` to the top scope is overridden by // the binding to an instance. function Ctor() { if (!(this instanceof Ctor)) return new Ctor(); this.foo = 20; } Ctor().foo; //: number foo; //: ?