Replies: 1 comment
-
Close as not planned. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
rustc use
'tcx
to explicitly show what data is related to arena.See https://rustc-dev-guide.rust-lang.org/memory.html#the-tcx-and-how-it-uses-lifetimes for details.
Currently, oxc uses
'a
for lifetime specifier, which could be very misunderstood for 'a
is a commonly used name for lifetime specifier just like meaningless variable namesfoo
orbar
.It's hard to distinguish whether a structure with lifetimes is due to hold data related to arena or just a reference.
Beta Was this translation helpful? Give feedback.
All reactions