Joel Mun

Results 39 comments of Joel Mun

@punkeel hi! It seems that swc does not run something like a nightly build, which is the reason I had to build web wasm of swc myself and manually include...

Maybe we could start from here? At this stage you get the name `__computed`. [`src/lib/converter/factories/declaration.ts`](https://github.com/TypeStrong/typedoc/blob/1b524baf14f2dde43669f661be402e1f917ebf4f/src/lib/converter/factories/declaration.ts#L41-L50) ```ts // Ensure we have a name for the reflection if (!name) { if (node.localSymbol)...

Checking `kind` of `child` inside `node` will return [`149`(`ComputedPropertyName`)](https://github.com/Microsoft/TypeScript/blob/8ddb2b61d2c996ab442b282ab9b36195ed697c13/lib/typescript.d.ts#L228). That's one way we could check if the node contains a `ComputedPropertyName`: ```ts const valueDeclaration = node.symbol.valueDeclaration // Object properties are...

So a temporary fix would be a few lines of additions of codes in [`src/lib/converter/factories/declaration.ts`](https://github.com/TypeStrong/typedoc/blob/1b524baf14f2dde43669f661be402e1f917ebf4f/src/lib/converter/factories/declaration.ts#L41-L50): ```ts // Ensure we have a name for the reflection if (!name) { if (node.localSymbol)...

I will have a closer look later as I am not really available as of now. Sorry about that :(

![Screen Shot 2020-12-30 at 10 46 26 AM](https://user-images.githubusercontent.com/22465806/103324865-6aa4e380-4a8c-11eb-8ea5-d23bbbb9df83.png) yeap. still.

> > Can also confirm that this is still an issue, and yes, only occurs if the version tag already exists (i.e. it is overwriting a file). > > Could...

Well yeah. perhaps related: https://github.com/request/request/issues/2047 Regardless of whether we use `request` i think it just might be a general issue across node.js applications. Based on the thread, we may also...

@kaisermann thank you for following up. I will give you an example soon.