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
Flatten dstr nesting that results from implicit string concatenation
This extra nesting happens when a dstr is generated from implicit string
concatenation and one of the strings being concatenated is itself a dstr.
Example: "foo" "bar #{baz}"
Without this preprocessor, this turns into: "foo#{"bar#{baz}"}"
With this preprocessor, this turns into: "foobar #{baz}"
0 commit comments