annotate Implab/Parsing/DFAStateDescriptor.cs @ 78:05f74c39a143
v2
fixed JSONXmlReader.ElementValue for boolean values
author |
cin |
date |
Thu, 11 Sep 2014 17:45:15 +0400 |
parents |
c0bf853aa04f |
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 }
|