mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-19 20:37:00 -05:00
fix(47062): support generic arrow function with default type parameter in tsx (#47112)
* fix(47062): support generic arrow function with default type parameter in tsx * test: update test "completionListIsGlobalCompletion"
This commit is contained in:
@@ -4433,7 +4433,7 @@ namespace ts {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
else if (third === SyntaxKind.CommaToken) {
|
||||
else if (third === SyntaxKind.CommaToken || third === SyntaxKind.EqualsToken) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user