(&self, listener: &mut (dyn CELListener<'input> + 'a))
| 440 | |
| 441 | impl<'input, 'a> Listenable<dyn CELListener<'input> + 'a> for StartContext<'input> { |
| 442 | fn enter(&self, listener: &mut (dyn CELListener<'input> + 'a)) -> Result<(), ANTLRError> { |
| 443 | listener.enter_every_rule(self)?; |
| 444 | listener.enter_start(self); |
| 445 | Ok(()) |
| 446 | } |
| 447 | fn exit(&self, listener: &mut (dyn CELListener<'input> + 'a)) -> Result<(), ANTLRError> { |
| 448 | listener.exit_start(self); |
| 449 | listener.exit_every_rule(self)?; |
nothing calls this directly
no test coverage detected