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
The Any was included to allow linked operations to have certain parameters be provided with constant values. The runtime expression syntax doesn't allow for expressing constant values.
It does the beg the question, how does tooling distinguish between a mistyped expression and literal string. My initial thought would be to check the first character for a $ and then attempt to interpret it as an expression. This does mean that strings that start with "$" would not be valid literal values. Not exactly ideal.
Found in Version 3.0.0-rc2
I guess this was intended to be
Map[string, Any|{expression}]
.But would
Map[string,{expression}]
suffice?The text was updated successfully, but these errors were encountered: