(chain: &str)
| 32 | |
| 33 | impl Parser { |
| 34 | fn new(chain: &str) -> Self { |
| 35 | Self { |
| 36 | tokens: chain.split_whitespace().map(String::from).collect(), |
| 37 | current: 0, |
| 38 | } |
| 39 | } |
| 40 | |
| 41 | fn parse(mut self) -> Option<Chain> { |
| 42 | let mut elements = vec![]; |
nothing calls this directly
no outgoing calls
no test coverage detected