14 lines
147 B
C#
14 lines
147 B
C#
namespace LitJson
|
|
{
|
|
internal class FsmContext
|
|
{
|
|
public bool Return;
|
|
|
|
public int NextState;
|
|
|
|
public Lexer L;
|
|
|
|
public int StateStack;
|
|
}
|
|
}
|