Calvin Huang

Results 6 comments of Calvin Huang

In my codebase, I've noticed that the order of the resulting imports does not seem to be the same, which can cause issues. With the following code: ```ts export {...

One example that fails under 1.2.218 but not under 1.2.205 (target ES2020) is: ```ts // index.ts export { default as ClassA } from './a'; export { default as ClassB }...

It seems you do terminate the master process: https://github.com/andywer/threads.js/blob/master/src/master/implementation.node.ts#L142 We encountered an unfortunate interaction where our SIGTERM handlers basically were nullified by the presence of `terminateWorkersAndMaster`; we weren't even using...

It appears the documentation is incorrect: https://docs.aws.amazon.com/emr-on-eks/latest/APIReference/API_DescribeJobRun.html `createdAt` and `finishedAt` are stated as numbers, but when I make a HTTP call to the endpoint they're returned as ISO datestrings: ![image](https://user-images.githubusercontent.com/1694228/168347375-13e73dff-0427-48e3-ac8c-e442c15686a2.png)

With the change to neovim expecting `zipfile://{filename}` instead of `zipfile:{filename}`, go to definition has stopped working for me completely. I wrote this PR in an attempt to make it work...

I've written an alternative implementation that seems to be significantly faster: https://github.com/pouya-eghbali/sia/pull/7