Commit aec9397
committed
Remove newline token
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.1 parent 8c9cc79 commit aec9397
4 files changed
+726639
-668572
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
100 | 100 | | |
101 | 101 | | |
102 | 102 | | |
103 | | - | |
104 | 103 | | |
| 104 | + | |
| 105 | + | |
105 | 106 | | |
106 | 107 | | |
107 | 108 | | |
| |||
2352 | 2353 | | |
2353 | 2354 | | |
2354 | 2355 | | |
2355 | | - | |
2356 | 2356 | | |
2357 | 2357 | | |
2358 | 2358 | | |
| |||
2379 | 2379 | | |
2380 | 2380 | | |
2381 | 2381 | | |
2382 | | - | |
2383 | 2382 | | |
2384 | 2383 | | |
2385 | 2384 | | |
| |||
0 commit comments