You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have logic to uniquely generate keys for a given TestKey, ensuring outputs have non-colliding names. As a corrollory you can technically refer to any combination of options with a really::long::list::of::options::like::this, but there's no way to provide that input or parse it. It would essentially be the reverse of this base_id, taking a string and producing a TestKey:
This is mildly annoying to do because I decided options should be omitted if they're the default (for compactness), so you need to do a lot of "try to parse as WriteImpl, no, ok, what about..." to reverse the process. In principle it can be done though, and it would be very nice to be able to dump an id into the CLI and have it spit out exactly what you want!
The text was updated successfully, but these errors were encountered:
We have logic to uniquely generate keys for a given TestKey, ensuring outputs have non-colliding names. As a corrollory you can technically refer to any combination of options with a
really::long::list::of::options::like::this
, but there's no way to provide that input or parse it. It would essentially be the reverse of thisbase_id
, taking a string and producing a TestKey:abi-cafe/src/harness/mod.rs
Lines 208 to 229 in 6ba6865
This is mildly annoying to do because I decided options should be omitted if they're the default (for compactness), so you need to do a lot of "try to parse as WriteImpl, no, ok, what about..." to reverse the process. In principle it can be done though, and it would be very nice to be able to dump an id into the CLI and have it spit out exactly what you want!
The text was updated successfully, but these errors were encountered: