-
Notifications
You must be signed in to change notification settings - Fork 329
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add specific error case for . operator on polymorphic types #2452
base: main
Are you sure you want to change the base?
Conversation
@@ -1866,6 +1866,10 @@ | |||
<value>The '.' operator cannot be used on {0} values.</value> | |||
<comment>Error Message. Error that occurs when you use the `.` operator on a type that doesn't support it. {0} is populated by a type name (e.g. Number, Text, Boolean). The operator (.) is not translated, should be the same character ('full stop', \u002E, decimal code 46) in all languages.</comment> | |||
</data> | |||
<data name="ErrInvalidDotOnPolymorphic" xml:space="preserve"> | |||
<value>The '.' operator cannot be used directly on Polymorphic lookups. Try using the AsType function to specify the type to treat it as.</value> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
✅ No public API change. |
No description provided.