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 in template literal string scanning. (rescript-lang#394)
The scanner underwent extensive refactoring, it appears that bug was introduced in 5acbbdc
Upon encountering a $ character, the routine that scans template literal tokens, shouldn't consume two characters.
Example:
```
`$${dollarAmountInt}`
```
Seeing a `$` doens't imply that the next character (here also a `$`) should be consumed.
0 commit comments