Trait for monomorphized trait object that corresponds to the nodes of parse tree generated for CELParser
| 278 | |
| 279 | /// Trait for monomorphized trait object that corresponds to the nodes of parse tree generated for CELParser |
| 280 | pub trait CELParserContext<'input>: |
| 281 | for<'x> Listenable<dyn CELListener<'input> + 'x> |
| 282 | + for<'x> Visitable<dyn CELVisitor<'input> + 'x> |
| 283 | + ParserRuleContext<'input, TF = LocalTokenFactory<'input>, Ctx = CELParserContextType> |
| 284 | { |
| 285 | } |
| 286 | |
| 287 | antlr4rust::coerce_from! { 'input : CELParserContext<'input> } |
| 288 |
nothing calls this directly
no outgoing calls
no test coverage detected