5 public class NewLineEventArgs
: ANTLREventArgs
7 public NewLineEventArgs()
10 public NewLineEventArgs(int line
)
15 public virtual int Line
17 get { return this.line_; }
18 set { this.line_ = value; }
24 /// <summary>This should NOT be called from anyone other than ParserEventSupport!
26 public override string ToString()
28 return "NewLineEvent [" + line_
+ "]";