| 1267 | /// This corresponds only to the sequence of flags themselves, e.g., `is-u`. |
| 1268 | #[derive(Clone, Debug, Eq, PartialEq)] |
| 1269 | pub struct Flags { |
| 1270 | /// The span of this group of flags. |
| 1271 | pub span: Span, |
| 1272 | /// A sequence of flag items. Each item is either a flag or a negation |
| 1273 | /// operator. |
| 1274 | pub items: Vec<FlagsItem>, |
| 1275 | } |
| 1276 | |
| 1277 | impl Flags { |
| 1278 | /// Add the given item to this sequence of flags. |
no outgoing calls
no test coverage detected