##// END OF EJS Templates
fix MTQueue syntax error
fix MTQueue syntax error

File last commit:

r55:c0bf853aa04f default
r98:4c945d94b9ab v2
Show More
DFAStateDescriptor.cs
13 lines | 295 B | text/x-csharp | CSharpLexer
/ Implab / Parsing / DFAStateDescriptor.cs
cin
Added initial JSON support...
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;
}
}