Added ability to order the execution of dictionary adapter behaviors.
[castle.git] / Experiments / Attic / Rook / Castle.Rook.Compiler / Parser / antlr / debug / IParserDebugSubject.cs
bloba7b3fb8fa249ba54ec433f5a827503eebdc6d21d
1 namespace antlr.debug
3 using System;
5 public interface IParserDebugSubject : IDebugSubject
7 event MatchEventHandler MatchedToken;
8 event MatchEventHandler MatchedNotToken;
9 event MatchEventHandler MisMatchedToken;
10 event MatchEventHandler MisMatchedNotToken;
11 event TokenEventHandler ConsumedToken;
12 event TokenEventHandler TokenLA;