#![allow(nonstandard_style)] // Generated from ReferenceToATN.g4 by ANTLR 4.8 use super::referencetoatnparser::*; use antlr_rust::tree::ParseTreeListener; pub trait ReferenceToATNListener<'input>: ParseTreeListener<'input, ReferenceToATNParserContextType> { /** * Enter a parse tree produced by {@link ReferenceToATNParser#a}. * @param ctx the parse tree */ fn enter_a(&mut self, _ctx: &AContext<'input>) {} /** * Exit a parse tree produced by {@link ReferenceToATNParser#a}. * @param ctx the parse tree */ fn exit_a(&mut self, _ctx: &AContext<'input>) {} } antlr_rust::coerce_from! { 'input : ReferenceToATNListener<'input> }