rust-lang / lldb

No longer used, use https://github.com/rust-lang/llvm-project instead
Other
14 stars 6 forks source link

Rust tuples have empty field names #21

Closed vadimcn closed 5 years ago

vadimcn commented 5 years ago

This will create problems for many, if not all, LLDB GUI's, because they'll probably expect distinct field names (VSCode does, for example).
Underscore-prefixed field names aren't really that bad. Dot-prefixed ones, that mimic Rust syntax, would be okay too.

tromey commented 5 years ago

How about just plain integers? That seems more rust-like to me.

vadimcn commented 5 years ago

That'd be fine.

tromey commented 5 years ago

Seems like that push should have closed this.