annotate Implab/Automaton/RegularExpressions/EmptyToken.cs @ 163:419aa51b04fd
ref20160224
JSON moved to Formats namespace
Working in RegularDFA
author |
cin |
date |
Wed, 24 Feb 2016 20:12:52 +0300 |
parents |
0526412bbb26 |
children |
a0ff6a0e9c44 |
rev |
line source |
162
|
1 using Implab;
|
|
2
|
|
3 namespace Implab.Automaton.RegularExpressions {
|
|
4 public class EmptyToken<TTag> : Token<TTag> {
|
|
5 public override void Accept(IVisitor<TTag> visitor) {
|
|
6 Safe.ArgumentNotNull(visitor, "visitor");
|
|
7 visitor.Visit(this);
|
|
8 }
|
|
9 public override string ToString() {
|
|
10 return "$";
|
|
11 }
|
|
12 }
|
|
13 }
|