| // Copyright (C) 2015 the V8 project authors. All rights reserved. |
| // This code is governed by the BSD license found in the LICENSE file. |
| super method calls in object literal method |
| Object.setPrototypeOf(object, proto); |
| assert.sameValue(object.method(42), 'proto42', "`object.method(42)` returns `'proto42'`, after executing `Object.setPrototypeOf(object, proto);`"); |
| assert.sameValue(proto.method(42), 'proto42', "`proto.method(42)` returns `'proto42'`, after executing `Object.setPrototypeOf(object, proto);`"); |
| Object.getPrototypeOf(object).method(42), |
| "`Object.getPrototypeOf(object).method(42)` returns `'proto42'`" |