DFAStateDescriptor.cs
13 lines
| 295 B
| text/x-csharp
|
CSharpLexer
cin
|
r55 | using System; | ||
using System.Collections.Generic; | ||||
using System.Linq; | ||||
using System.Text; | ||||
using System.Threading.Tasks; | ||||
namespace Implab.Parsing { | ||||
public struct DFAStateDescriptior { | ||||
public bool final; | ||||
public int[] tag; | ||||
public int[] transitions; | ||||
} | ||||
} | ||||