[As seen on MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/super#Using_super.prop_in_object_literals). ```coffee obj1 = -> method1: -> console.log 'method1' obj2 = method2: -> super.method1() Object.setPrototypeOf obj2, obj1 obj2.method2() # logs "method1" ``` The `obj2` variable would transpile to: ```js obj2 = { method2() { super.method1(); } }; ```