You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
ts(4113) and ts(4117) are formatted incorrectly if the base class is generic and there are quotes in the base class part of the error.
For example:
ts(4113)
Expected behavior
It should probably be formatted as:
This member cannot have an override modifier because it is not declared in the base class A<T["nested"]>. ts(4113)
and
This member cannot have an override modifier because it is not declared in the base class A<T["nested"]>. Did you mean testA?ts(4117)
Original error
If this bug is related to an error that is not formatting well, please
attach the original error in a code block:
This member cannot have an 'override' modifier because it is not declared in the base class 'A<T["nested"]>'.ts(4113)
This member cannot have an 'override' modifier because it is not declared in the base class 'A<T["nested"]>'. Did you mean 'testA'?ts(4117)
Screenshots
The text was updated successfully, but these errors were encountered:
Describe the bug
ts(4113) and ts(4117) are formatted incorrectly if the base class is generic and there are quotes in the base class part of the error.
For example:
ts(4113)
ts(4117)
Expected behavior
It should probably be formatted as:
This member cannot have an
override
modifier because it is not declared in the base classA<T["nested"]>
. ts(4113)and
This member cannot have an
override
modifier because it is not declared in the base classA<T["nested"]>
. Did you meantestA
?ts(4117)Original error
If this bug is related to an error that is not formatting well, please
attach the original error in a code block:
Screenshots
The text was updated successfully, but these errors were encountered: