Mercurial > pub > ImplabNet
annotate Implab/Automaton/RegularExpressions/EmptyToken.cs @ 260:547a2fc0d93e v3 v3.0.6
minor fixes
| author | cin |
|---|---|
| date | Fri, 13 Apr 2018 19:14:59 +0300 |
| parents | a0ff6a0e9c44 |
| children |
| rev | line source |
|---|---|
| 162 | 1 using Implab; |
| 2 | |
| 3 namespace Implab.Automaton.RegularExpressions { | |
| 177 | 4 public class EmptyToken: Token { |
| 5 public override void Accept(IVisitor visitor) { | |
| 162 | 6 Safe.ArgumentNotNull(visitor, "visitor"); |
| 7 visitor.Visit(this); | |
| 8 } | |
| 9 public override string ToString() { | |
| 10 return "$"; | |
| 11 } | |
| 12 } | |
| 13 } |
