Caleb Meredith
Caleb Meredith
The version of acorn bundled with this package does not properly highlight ES6 syntax like keywords such as `const`, `let`, and `class` or features like template strings. The latest version...
I'd like to see the bucklescript output, but can't without setting up the project on my machine. Is there a way to see the compiled code without setting up a...
What’s the current recommendation for RLS support in projects that use Bazel and VSCode?
I have a program that looks like this: ```hs queryType :: ObjectType Database () queryType = query Nothing [ fieldWithArgs "account" Nothing accountType (args1 (arg "id" Nothing intInputType)) (\context ()...
Is querying your client collection and validating secrets necessary as in the password grant example [here](https://github.com/jaredhanson/oauth2orize/blob/master/examples/all-grants/oauth2.js#L102-L103)? It was my understanding that passport would validate the secret, and `deserializeClient` method would...
## Input ```js "use strict"; var object = { *["a"]() { yield 1; yield 2; }, }; var x = Object.keys(object); ``` ## Output ```js "use strict"; var x, object;...
Prepack outputs invalid code without a diagnostic. Multiple returns under abstract conditions seem to cause incorrect output. ```js main(false, false, false); // Expected: false // Actual: true ``` ## Input...
This seems like a bug in simplification? ```js main(1); // Expected: true // Actual: 1 ``` ## Input ```js (function() { "use strict"; function main(a1) { if (a1) { return...
The following input throws an invariant violation which can be found here. After adding instrumentation I discovered that `completion` was an instance of `PossiblyNormalCompletion`. https://github.com/facebook/prepack/blob/1d04882b80027d0694bf2355ad4925c74252531d/src/realm.js#L1119-L1123 I couldn’t think of ways...
The latest version of `tslint-language-service` does not support `typescript` 3. However, it looks like on master the peer dependency has been bumped.