What
How do you write and verbalise R expressions? What are your thoughts on constructing English-sentences from R expressions?
Maybe variable <- x %>% filter(y != z) translates to 'variable gets x then filter where y doesn't equal z'? Maybe you'd reference 'open paren', or 'open bracket', or similar? What else?
(I'm more concerned with 'translating' R expressions to sentences rather than how to pronounce package names, like here and here.)
Why
The work-in-progress package {r2eng} (GitHub, tweet) aims to make (opinionated) translations from R to English (and vocalise them) and is inspired by @AmeliaMN's recent useR! 2020 talk. It uses {lintr} to parse tokens from R expressions.
The point is to help communicate R code between learners and teachers, to help non-English speakers and to generally improve the accessibility of R in written and spoken form.
Edit: in case it wasn't clear, I'm the creator of {r2eng}, looking for input, advice, etc.

If code is written well You won't find very long and complex expressions, because experienced R programmers divide it into small parts much easier to read and understand. And often You can find very similar constructs, so maybe you can approach your task this way - analyse bigger parts with similar architecture?