Open
Description
Does this issue occur when all extensions are disabled?: Yes/No
- VS Code Version: 1.95.3
- OS Version: MacOS 15.0.1
Steps to Reproduce:
Write the following in VSCode
let myObj:
| {
prop1: string
}
| {
prop2: string
}
function myFunc() {}
The syntax of function myFunc() {}
and everything after it is broken.
I found that it happens only in this rare edge case. Some things that actually fix it:
- Adding a semicolon
let myObj:
| {
prop1: string
}
| {
prop2: string
};
function myFunc() {}
- Writing the union type on a single line
let myObj: { prop1: string } | { prop2: string }
function myFunc() {}
- Adding a line break before the next line of code
let myObj:
| {
prop1: string
}
| {
prop2: string
}
function myFunc() {}
Metadata
Metadata
Assignees
Labels
No labels