Heejae Chang

Results 457 comments of Heejae Chang

`a: MyType` also shows `MyType` as white. we should update our semantic tokenizer to support new `TypeAlias` at the decl and usage.

This issue has been fixed in prerelease version 2025.1.100, which we've just released. You can find the changelog here: [CHANGELOG.md](https://github.com/microsoft/pylance-release/blob/main/CHANGELOG.md#20251100-16-January-2025-PreRelease)

I think this is different issue. this is due to us shipping pregenerated indices for `stdlib`. but looks like `python.analysis.regenerateStdLibIndices: true` doesn't work for platform specific symbols. let me take...

This issue has been fixed in prerelease version 2024.10.102, which we've just released. You can find the changelog here: [CHANGELOG.md](https://github.com/microsoft/pylance-release/blob/main/CHANGELOG.md#202410102-24-October-2024-PreRelease)

sounds like enhancement we can do. for overload, before we look hierarchy for the same signature (overridden symbol in base type), we look other overloads to see they have doc...

are you trying to create new type alias by `t = typing.Literal[values]`? or did you mean to do `t: typing.Literal[...]` ? for this ``` def get_values() -> tuple[int]: return (1,2,3)...

let me take a look. it looks like it is one of reason why pylance user do `reload` according to telemetry and `vscode-chat-code-block` is something I worked with before for...