source: trunk/yao/share/antlr-2.7.7/lib/csharp/antlr.runtime/antlr.debug/IParserDebugSubject.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: 375 bytes
Line 
1namespace antlr.debug
2{
3        using System;
4       
5        public interface IParserDebugSubject : IDebugSubject
6        {
7                event MatchEventHandler                                 MatchedToken;
8                event MatchEventHandler                                 MatchedNotToken;
9                event MatchEventHandler                                 MisMatchedToken;
10                event MatchEventHandler                                 MisMatchedNotToken;
11                event TokenEventHandler                                 ConsumedToken;
12                event TokenEventHandler                                 TokenLA;
13        }
14}
Note: See TracBrowser for help on using the repository browser.