1 namespace antlr.debug
2 {
3 	using System;
4 
5 	public class SyntacticPredicateEventArgs : GuessingEventArgs
6 	{
7 
8 
SyntacticPredicateEventArgs()9 		public SyntacticPredicateEventArgs()
10 		{
11 		}
SyntacticPredicateEventArgs(int type)12 		public SyntacticPredicateEventArgs(int type) : base(type)
13 		{
14 		}
15 
ToString()16 		public override string ToString()
17 		{
18 			return "SyntacticPredicateEvent [" + Guessing + "]";
19 		}
20 	}
21 }