(&self, flag: &str)
| 61 | |
| 62 | impl<'f> Context<'f> { |
| 63 | pub fn flag(&self, flag: &str) -> Option<&Flag> { |
| 64 | self.flag.get(flag) |
| 65 | } |
| 66 | |
| 67 | pub fn value_of(&self, flag: &str) -> &str { |
| 68 | match self.flag.get(flag) { |
nothing calls this directly
no outgoing calls
no test coverage detected