Timeline for Multiple inheritance with JavaScript with support of calling of super() methods
Current License: CC BY-SA 3.0
10 events
| when toggle format | what | by | license | comment | |
|---|---|---|---|---|---|
| Feb 2, 2015 at 0:28 | comment | added | Merc | I am accepting this answer although it basically didn't actually go through the code, but only ran it through JSHint. I gather my code is 100% perfect! | |
| Feb 2, 2015 at 0:27 | vote | accept | Merc | ||
| Jan 22, 2015 at 2:24 | history | bounty awarded | CommunityBot | ||
| Jan 17, 2015 at 5:11 | comment | added | Merc | Renewing my apologies for editing the code, and considering that the code up here now is finalised, works in strict mode, the module is fully documented and fully unit-tested, I would love to hear from developers who chew this sort of thing every day! | |
| Jan 14, 2015 at 15:20 | comment | added | Merc | Oh dear... sorry. Not touching the code again, I swear. | |
| Jan 14, 2015 at 15:19 | comment | added | Marc-Andre | @Merc No it's not, read this answer for more information : meta.codereview.stackexchange.com/a/1765 | |
| Jan 14, 2015 at 14:08 | comment | added | Merc | And... sorry, the natural thing for me to do is fix the code as problems are pointed out. Not sure if it's good policy here though? | |
| Jan 14, 2015 at 14:07 | comment | added | Merc |
The bits I didn't do: forEach(). Two reasons: 1) Speed 2) I want this to work in browsers as well (I realise I need polyfills for Object.createObject and Object.getPrototypeOf, but they are easy enough.
|
|
| Jan 14, 2015 at 14:05 | comment | added | Merc |
1) "use NONstrict" is because I want this code eventually to be strict. Unfortunately I use arguments.callee (and I need to). 2) Semicolon, commas,variables: all fixed 3) __proto__: fixed. 4) something = something || somethingElse I already use this pattern. I apply it whenever I can. Have I missed it somewhere?
|
|
| Jan 14, 2015 at 8:35 | history | answered | Madara's Ghost | CC BY-SA 3.0 |