annotate Implab/Parsing/DFAStateDescriptor.cs @ 55:c0bf853aa04f
Added initial JSON support
+JSONParser
+JSONWriter
author |
cin |
date |
Sun, 15 Jun 2014 19:39:11 +0400 (2014-06-15) |
parents |
|
children |
2a8466f0cb8a |
rev |
line source |
55
|
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 }
|