Mercurial > pub > ImplabNet
comparison Implab/Parsing/EmptyToken.cs @ 55:c0bf853aa04f
Added initial JSON support
+JSONParser
+JSONWriter
author | cin |
---|---|
date | Sun, 15 Jun 2014 19:39:11 +0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
51:2c332a9c64c0 | 55:c0bf853aa04f |
---|---|
1 using Implab; | |
2 using System; | |
3 using System.Collections.Generic; | |
4 using System.Linq; | |
5 using System.Text; | |
6 using System.Threading.Tasks; | |
7 | |
8 namespace Implab.Parsing { | |
9 public class EmptyToken : Token { | |
10 public override void Accept(IVisitor visitor) { | |
11 Safe.ArgumentNotNull(visitor, "visitor"); | |
12 visitor.Visit(this); | |
13 } | |
14 public override string ToString() { | |
15 return "$"; | |
16 } | |
17 } | |
18 } |