Skip to content

Conversation

@fredrikekre
Copy link
Member

Without this patch \r\n\r\n would be tokenized as \r\n\r and \n instead of \r\n and \r\n. Fixes
fredrikekre/Runic.jl#15.

@codecov
Copy link

codecov bot commented Jul 13, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 95.84%. Comparing base (ae7d6ac) to head (df7221e).
Report is 2 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main     #460      +/-   ##
==========================================
- Coverage   96.43%   95.84%   -0.60%     
==========================================
  Files          14       13       -1     
  Lines        4208     3945     -263     
==========================================
- Hits         4058     3781     -277     
- Misses        150      164      +14     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

Without this patch `\r\n\r\n` would be tokenized as `\r\n\r` and `\n`
instead of `\r\n` and `\r\n`. Fixes
fredrikekre/Runic.jl#15.
Copy link
Member

@c42f c42f left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good!

(Side note: One thing I've wondered is whether we should lex newline whitespace as a strictly separate token from any other whitespace. That's a separate PR though.)

Co-authored-by: Claire Foster <[email protected]>
@fredrikekre fredrikekre merged commit a11e664 into main Jul 17, 2024
@fredrikekre fredrikekre deleted the fe/rn2 branch July 17, 2024 07:24
@fredrikekre
Copy link
Member Author

Side note: [...]

This was a bit of a surprise to me actually. Since there are both Whitespace and Newline(Ws) tokens it seems a bit strange to have them combined. On the other hand, for the purpose of writing a code formatter it was rather convenient: Stripping trailing space is easy since I only need to find NewlineWs nodes, and indents is also easy for the same reason (no need to peek backwards and forward).

Also, can we have a new release including this and #455 ? Is there a reason releases aren't cut from the main branch? I am happy to do the backporting work to the release-0.4 branch but would be nice to get back to releasing from main I think.

@c42f
Copy link
Member

c42f commented Jul 17, 2024

We can have a new release, for sure. I've been working toward that in the past couple of days - merging a few fixes and getting in some changes I need for JuliaLowering.

If we make it from main it'll be a breaking release, so I guess we may as well make it JuliaSyntax 1.0. If I don't get it done soon enough for your liking (I've been feeling overloaded!) you're welcome to backport the bugfixes to the release-0.4 branch and we can release that.

But I've been feeling like we should get back to releasing off main - having the divergence between the release and main has become a pain point.

@c42f
Copy link
Member

c42f commented Jul 17, 2024

Since there are both Whitespace and Newline(Ws) tokens it seems a bit strange to have them combined.

Yes it seems kinda odd right? We don't need to change it if it's convenient. But also it doesn't seem very clean 🤷‍♀️

@fredrikekre
Copy link
Member Author

fredrikekre commented Jul 17, 2024

Which PRs/commits are breaking?

@c42f
Copy link
Member

c42f commented Jul 18, 2024

#325 and #322 at least. (Yiikes. Those are so old. Speaks to how much we need to get back to releasing from main)

fredrikekre added a commit that referenced this pull request Jul 20, 2024
Without this patch `\r\n\r\n` would be tokenized as `\r\n\r` and `\n`
instead of `\r\n` and `\r\n`. Fixes
fredrikekre/Runic.jl#15.

(cherry picked from commit a11e664, PR #460)
c42f pushed a commit to JuliaLang/julia that referenced this pull request Oct 17, 2025
…yntax.jl#460)

Without this patch `\r\n\r\n` would be tokenized as `\r\n\r` and `\n`
instead of `\r\n` and `\r\n`. Fixes
fredrikekre/Runic.jl#15.
topolarity pushed a commit to JuliaLang/julia that referenced this pull request Nov 14, 2025
…yntax.jl#460)

Without this patch `\r\n\r\n` would be tokenized as `\r\n\r` and `\n`
instead of `\r\n` and `\r\n`. Fixes
fredrikekre/Runic.jl#15.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants