michaele-blend

Results 2 comments of michaele-blend

hello @ofrobots and @nolanmar511, I have submitted a patch here that fixes the compilation issue: #66 Please let me know if you have any feedback or reservations about merging this,...

here's a potential workaround: ```js function Animal_run() { console.log(this.name, 'started running!') } function Animal_walk() { console.log(this.name, 'started walking.') } let animal = {name: 'fido', run:Animal_run} animal.run(); ``` yields close to...