Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TypeScript Syntax Highlighting Bug #780

Closed
fc01 opened this issue Oct 16, 2019 · 1 comment
Closed

TypeScript Syntax Highlighting Bug #780

fc01 opened this issue Oct 16, 2019 · 1 comment

Comments

@fc01
Copy link

fc01 commented Oct 16, 2019

//正常的颜色
const f0 = <T extends any>(p: {
    a: string
    b: T
}) => async () => p.a + p.b


//颜色不对
const f1 = <T extends any>({ a, b }: {
    a: string
    b: T
}) => async () => a + b


//颜色不对
const f2 = <T extends any>({ a, b }: {
    a: string
    b: T
}) => async () => a + b

image

@mjbvz mjbvz self-assigned this Oct 16, 2019
@mjbvz mjbvz transferred this issue from microsoft/vscode Oct 16, 2019
@sheetalkamat
Copy link
Member

sheetalkamat commented Oct 16, 2019

Does not repro in master Repros

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants