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
See when you wrote NonExistType in code, no matter how you query you only get <ERROR TYPE: NonExistType> and cannot get the original name NonExistType. And the only way left if a hardcoded regex """<ERROR TYPE: ([\w\s\.]+)>""".toRegex().find(errorType.toString())?.destructured?.toList()?.first()
The text was updated successfully, but these errors were encountered:
When an type
Foo
is error type (unresolvable), there's no way to get API to get this error type's original name/code/textFoo
.Repro
acejingbo@8900934
See when you wrote
NonExistType
in code, no matter how you query you only get<ERROR TYPE: NonExistType>
and cannot get the original nameNonExistType
. And the only way left if a hardcoded regex"""<ERROR TYPE: ([\w\s\.]+)>""".toRegex().find(errorType.toString())?.destructured?.toList()?.first()
The text was updated successfully, but these errors were encountered: