Jamie Kyle

Results 79 issues of Jamie Kyle

Right now it only shows the most recent commit, I'd like to know all of the commits since the last deployment so I can tell if I'm deploying something big....

task

This is happening very consistently for me https://user-images.githubusercontent.com/952783/187500163-1a174ff8-7336-41b5-b984-1184876616b2.mov

It would be really nice if AST nodes had start/end positions for every node: ```js parse("Hello **World**") [ { type: "text", content: "Hello", loc: { start: 0, end: 6 },...

| Effect | `Opaque` | `Labeled` | | --- |:---:|:---:| | Preserve type name | ✅ | ✅ | | Requires `as` | ✅ | ❌ | ```ts declare const...

type addition

Here's a list of all the existing JSDoc tags which we could consider adding. I've checked off the ones I think are reasonable to consider --- - [ ] `@abstract`...

So with the type system inside of dx we have three options: 1. Use a limited subset of Flow/TypeScript easily expressed by dx `- tags:` 2. Create our own type...

The more I look at it the more I don't like the syntax for documenting params: ```js // - param: `a` `number` - description // - param: `b` `string` -...

At what point do we want to start formalizing a grammar for dx? Should we just start now and iterate on it until we reach 1.0? What should we use...

It's possible to detect what will be thrown from a function: ```js // { throws: [{ type: TypeError, message: 'message' }] } function foo() { throw new TypeError('message'); } //...