Mercurial > pub > ImplabNet
comparison Implab/Parsing/DFAStateDescriptor.cs @ 55:c0bf853aa04f
Added initial JSON support
+JSONParser
+JSONWriter
author | cin |
---|---|
date | Sun, 15 Jun 2014 19:39:11 +0400 |
parents | |
children | 2a8466f0cb8a |
comparison
equal
deleted
inserted
replaced
51:2c332a9c64c0 | 55:c0bf853aa04f |
---|---|
1 using System; | |
2 using System.Collections.Generic; | |
3 using System.Linq; | |
4 using System.Text; | |
5 using System.Threading.Tasks; | |
6 | |
7 namespace Implab.Parsing { | |
8 public struct DFAStateDescriptior { | |
9 public bool final; | |
10 public int[] tag; | |
11 public int[] transitions; | |
12 } | |
13 } |