Added ability to order the execution of dictionary adapter behaviors.
[castle.git] / Experiments / Attic / Rook / Castle.Rook.Compiler / Parser / antlr / debug / ICharScannerDebugSubject.cs
blob43b539bee944ccdea8802d788341f3fdcf15af74
1 namespace antlr.debug
3 using System;
5 public interface ICharScannerDebugSubject : IDebugSubject
7 event NewLineEventHandler HitNewLine;
8 event MatchEventHandler MatchedChar;
9 event MatchEventHandler MatchedNotChar;
10 event MatchEventHandler MisMatchedChar;
11 event MatchEventHandler MisMatchedNotChar;
12 event TokenEventHandler ConsumedChar;
13 event TokenEventHandler CharLA;