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(codemod): correctly escape literal \u sequences in note text
The .imp files contain literal ’ text (6 chars). The ISC parser
interprets \uXXXX as unicode escapes in quoted strings, producing the
actual character instead of literal text.
Fix: escape \u as \\u in the ISC source so the parser produces literal
\u (matching the DSL). The gsub replacement needs 8 backslashes in Ruby
source to produce 2 backslashes in output.
Result: 278/289 deep equivalent
0 commit comments