| let assert = { |
| sameValue: function (a, e) { |
| if (a !== e) |
| throw new Error("Expected: " + e + " but got: " + a); |
| }, |
| shouldThrow: function(exception, functor) { |
| let threwException; |
| try { |
| functor(); |
| threwException = false; |
| } catch(e) { |
| threwException = true; |
| if (!e instanceof exception) |
| throw new Error("Expected to throw: " + exception.name + " but it throws: " + e.name); |
| } |
| |
| if (!threwException) |
| throw new Error("Expected to throw: " + exception.name + " but executed without exception"); |
| } |
| } |
| |
| let i = 0; |
| |
| let o = {}; |
| class Base { |
| constructor() { |
| return o; |
| } |
| } |
| |
| class C extends Base { |
| #method(v) { |
| this.field = v; |
| } |
| |
| access(v) { |
| this.#method(v); |
| } |
| } |
| noInline(C.prototype.access); |
| |
| let c = new C(); |
| C.prototype.access.call(c, 'foo'); |
| assert.sameValue(c.field, 'foo'); |
| |
| assert.shouldThrow(TypeError, function() { |
| c = new C(); |
| }); |
| |