comparison Implab/Parsing/DFAutomaton.cs @ 158:130781364799 v2

refactoring, code cleanup
author cin
date Thu, 18 Feb 2016 14:34:02 +0300
parents 97fbbf816844
children
comparison
equal deleted inserted replaced
157:948c015a9011 158:130781364799
12 public DFAStateDescriptior[] states; 12 public DFAStateDescriptior[] states;
13 public int current; 13 public int current;
14 public T info; 14 public T info;
15 } 15 }
16 16
17 public const int INITIAL_STATE = DFADefinitionBase.INITIAL_STATE; 17 public const int INITIAL_STATE = DFADefinition.INITIAL_STATE;
18 public const int UNREACHEBLE_STATE = DFADefinitionBase.UNREACHEBLE_STATE; 18 public const int UNREACHEBLE_STATE = DFADefinition.UNREACHEBLE_STATE;
19 19
20 protected ContextFrame m_context; 20 protected ContextFrame m_context;
21 Stack<ContextFrame> m_contextStack = new Stack<ContextFrame>(); 21 Stack<ContextFrame> m_contextStack = new Stack<ContextFrame>();
22 22
23 protected int Level { 23 protected int Level {