annotate Implab/Parsing/DFAStateDescriptor.cs @ 124:a336cb13c6a9
 v2 
major update, added Drain mathod to AsyncQueue class
 | author | cin | 
 | date | Thu, 15 Jan 2015 02:43:14 +0300 | 
 | 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 } |