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
We don't want the newline token to show in the AST as it would make our
passes sensible to that specific token. For instance if the source was
```fortran
\#ifdef HAVE_THING
! foo
\#endif
```
we wouldn't want to visit the newline character and make our column
limit algorithm split the `#ifdef` as
```fortran
\#ifdef HAVE_THING \
! foo
\#endif
```
In other words, this commit is hidding the newline character in the AST.
0 commit comments