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
- fix regression where new fragment delimiter interfered with string templates, changed processing of string templates to avoid false positive detection of fragments
- don't support fragment expressions as binary expression operands, particularly combined with string templates, which compiles as concatenation of new string literals
As reported in https://manifold-group.slack.com/archives/C013208SXJQ/p1692287525410089
A string template beginning with a fragment delimiter will not be processed as a string template:
Should evaluate as
"[42]"
, but is taken literally because it starts with[
, which is the new fragment delimiter.The text was updated successfully, but these errors were encountered: