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
Don't insert an <outdent> where a statement is logically continued
Thsi fixes a case observed in SJSCodeGen, which was basically like this:
```scala
if (x) ...
else /*
bla
bla
} else */ {
```
The problem is that the commented out `}` in front of the uncommented `{` caused
an <outdent> to be inserted.
0 commit comments