Irakli Gozalishivili (2013-08-10T19:40:59.000Z)
domenic at domenicdenicola.com (2013-08-12T05:32:28.845Z)
One think I have suggested back in a time may has an interesting property to a private symbol sharing. What if private symbols were of "function" type instead of "object", where given a symbol 'foo' ```js foo(object, arg1, arg2, …) ``` desugars to ```js object[foo](arg1, arg2, …) ``` That would make symbol sharing as legit as sharing regular functions. In addition it would allow users to define / consume them in functional or OOP style depending on their preferences.