Closed andrei-ungureanu-uipath closed 6 months ago
These are both design-only features, as they're only called when typing into an expression textbox
This pull request has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
When a precompiled value is created, determining the
ReturnType
of an expression may throw an exception for certain values likenull
and() => null
because there needs to be an implicit cast on theSemanticModel
to figure out the type. In these scenarios, theType
property will be null and we should fallback to theConvertedType
property as this one is populated when it cannot be inferred without casting.