Tim Popham
Tim Popham
I just stumbled across this repo from your comment on a blog post. You should consider filtering your files with non-watch flags for faster start times: ``` /*{ pattern: 'node_modules/...'},...
Cap'n Proto schemas admit absolute imports that search command-line-parametrized include directories, e.g. `capnp compile -ots -I /path/to/reusable/stuff/ some-schema.capnp`. I've got an example repo: https://github.com/popham/ts-absolute-import-example (`npm run compile` generates). Currently my...
According to 6.1.4 from my ECMA-262 spec (June 2017 edition): >A code unit that is in the range 0xD800 to 0xDFFF, but is not part of a surrogate pair, is...
I noticed that your schema's constants get translated to naked values, e.g. [capnpc-ts/test/integration/test.capnp.ts#L2110-L2145](https://github.com/jdiaz5513/capnp-ts/blob/524b6bde7d81037de586e2905d1d40955bbe22b0/packages/capnpc-ts/test/integration/test.capnp.ts#L2110-L2145). Unfortunately, ES6 and Node's module resolution don't guarantee that imports are available at module scope. When you...
Playing with the post plugin, I've run into undefinedness because the property Schema versus schema (older versions of knex api use Schema, but Ghost uses 0.5.0). A quick `grep -r...
Over at #5018 a user was attempting to use an intersection type to specify the data parameter of a `MessageEvent`. The `data` property should be parametrized. The `source` and `ports`...
This PR introduces abstract instance methods (like Java's `abstract` and C++'s pure virtuals) and abstract class methods to Flow. Abstractness on class methods sounds goofy from my Java and C++...