(pair: Pair<Rule>)
| 256 | } |
| 257 | |
| 258 | pub fn parse_variable(pair: Pair<Rule>) -> Result<String, ParseError> { |
| 259 | Ok(pair.as_str().to_string()) |
| 260 | } |
| 261 | |
| 262 | lazy_static::lazy_static! { |
| 263 | static ref PRATT_PARSER: PrattParser<Rule> = { |
no test coverage detected