MCPcopy Create free account
hub / github.com/cel-rust/cel-rust / enter

Method enter

cel/src/parser/gen/celparser.rs:442–446  ·  view source on GitHub ↗
(&self, listener: &mut (dyn CELListener<'input> + 'a))

Source from the content-addressed store, hash-verified

440
441impl<'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)?;

Callers

nothing calls this directly

Calls 15

enter_every_ruleMethod · 0.80
enter_startMethod · 0.80
enter_conditionalOrMethod · 0.80
enter_conditionalAndMethod · 0.80
enter_relationMethod · 0.80
enter_calcMethod · 0.80
enter_LogicalNotMethod · 0.80
enter_MemberExprMethod · 0.80
enter_NegateMethod · 0.80
enter_MemberCallMethod · 0.80
enter_SelectMethod · 0.80
enter_PrimaryExprMethod · 0.80

Tested by

no test coverage detected