annotate Implab/Automaton/RegularExpressions/EmptyToken.cs @ 255:b00441e04738
v3
Adde workaround to the behaviour of the logical operations stack in conjuction
with async/await methods
author |
cin |
date |
Wed, 04 Apr 2018 15:38:48 +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 }
|