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
refactor(test): require '{' and '}' to be escaped in assertions
I want to allow diagnostic assertions to contain multiple string
members. For example:
u8"Diag_Foo{.bar=asdf}{.baz=qwer}"_diag
This isn't possible right now because we parse .bar's value as
"asdf}{.baz=qwer".
Change parsing to parse only until the first '}'. Allow '}' inside the
value by requiring it to be escaped. For consistency, also require '{'
to be escaped.
0 commit comments