Tab Atkins Jr.
Tab Atkins Jr.
In the README, you imply that `(. a 3)` compiles to `a[3]` (good), but then state that `(. a b)` compiles to `a.b` (in other words, for all but the...
This is a super-interesting space to play in, but exactly *who* is publishing *what* to *where* drastically changes many aspects of it, from the content model to privacy considerations to...
In the ModalCloseWatcher's primary interaction with the developer is firing either zero or one `close` events. It *never* fires multiple `close` events; once the `close` event has fired, the object...
The big feature that makes this different from some of the other pipeline proposals is that if the function is a generator and/or async, it automagically alters how it calls...
The introduction of a generator into the pipeline implicitly invokes some looping, producing a generator as output. But what happens when you pipeline together *two* generators? Like, say you have:...
Currently, idents [disallow](https://github.com/kdl-org/kdl/blob/main/SPEC.md#non-identifier-characters) a few characters from being expressed literally, requiring they be escaped if authors want to include them: * codepoints < 0x20 (control characters) * codepoints > 0x10FFFF...
Rather than banning `#` in idents altogether, as #204 does, this takes the same approach as our number-like handling, and just bans idents from looking like a raw string *in...
#1138 switched maplike/setlike interfaces to use Infra maps/sets, and as part of that had to redefine some text out of the ES spec, notably reusing the language of [CreateMapIterator](https://tc39.es/ecma262/#sec-createmapiterator) and...
Per #1133, interface objects themselves, and namespaces, aren't intended to have complex internal state, so the algo creating their attribute getters (aka statics for interfaces, or regulars for namespaces) didn't...
In #1000 a contradiction was noted with ObservableArrays on namespace objects, which was resolved by banning them from being on namespace objects. In @domenic noted that this was justified by...