Hacker News new | ask | show | jobs
by elehack 5282 days ago
Nice to see something actually trying a CLOS-style object system. There are good ideas in there that don't get enough presence in more recent language efforts.
2 comments

Look at Dylan, stuff started happening again.

http://opendylan.org/

I wonder what happened to SELF-like object systems (slots, prototypes and all that).
JavaScript
I mean high-performance implementations. Techniques to (statically) compile prototypes into efficient code were developed, but they are largely irrelevant to Javascript. High-performance modern implementations of JS rely on tracing JIT.
Pretty sure polymorphic inline caches are standard fare in both Javascript and other VMs (JVM, CLR, etc.). What other techniques are you referring to?