source: trunk/yao/share/antlr-2.7.7/lib/csharp/antlr.runtime/antlr.debug/ParserMatchListener.cs @ 1

Last change on this file since 1 was 1, checked in by lnalod, 15 years ago

Initial import of YAO sources

File size: 330 bytes
Line 
1namespace antlr.debug
2{
3        using System;
4       
5        public interface ParserMatchListener : Listener
6        {
7                void  parserMatch               (object source, MatchEventArgs e);
8                void  parserMatchNot    (object source, MatchEventArgs e);
9                void  parserMismatch    (object source, MatchEventArgs e);
10                void  parserMismatchNot (object source, MatchEventArgs e);
11        }
12}
Note: See TracBrowser for help on using the repository browser.