Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Open leaves:
2024-12-24
| ||
15:23 | How on earth did this typo not fail (or warn) earlier? Leaf check-in: 564f08d488 user: stephan tags: trunk | |
2020-01-30
| ||
17:25 | An effort at extending s2's constructor support to allow Functions to act as their own JS-style ctors. It basically works but cannot, due to a new level of indirection, be made to work inuitively with the inherits keyword, so the effort is being sidelined for now. Leaf check-in: 54451bdf90 user: stephan tags: s2-instance-prototype | |
2020-01-07
| ||
08:03 | Initial x?.y operator experiment. It works but does not handle a call on the RHS like the groovy language does (x?.y()), and enabling that would require more effort than i'm currently willing to invest :/. That requires adding short-circuiting (skip-mode) for that op, but the trick, it seems, is determining when to turn *off* skip-mode without scattering q-dot-op-specific artifacts all over the eval loop. Leaf check-in: c1479d5778 user: stephan tags: s2-op-qdot | |