source: trunk/yao/share/antlr-2.7.7/lib/csharp/antlr.runtime/antlr.debug/SyntacticPredicateEventArgs.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: 332 bytes
Line 
1namespace antlr.debug
2{
3        using System;
4       
5        public class SyntacticPredicateEventArgs : GuessingEventArgs
6        {
7               
8               
9                public SyntacticPredicateEventArgs()
10                {
11                }
12                public SyntacticPredicateEventArgs(int type) : base(type)
13                {
14                }
15
16                public override string ToString()
17                {
18                        return "SyntacticPredicateEvent [" + Guessing + "]";
19                }
20        }
21}
Note: See TracBrowser for help on using the repository browser.