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

refactoring, code cleanup
author cin
date Thu, 18 Feb 2016 14:34:02 +0300
parents 97fbbf816844
children
line wrap: on
line diff
--- a/Implab/Parsing/DFAutomaton.cs	Thu Feb 18 11:03:47 2016 +0300
+++ b/Implab/Parsing/DFAutomaton.cs	Thu Feb 18 14:34:02 2016 +0300
@@ -14,8 +14,8 @@
             public T info;
         }
 
-        public const int INITIAL_STATE = DFADefinitionBase.INITIAL_STATE;
-        public const int UNREACHEBLE_STATE = DFADefinitionBase.UNREACHEBLE_STATE;
+        public const int INITIAL_STATE = DFADefinition.INITIAL_STATE;
+        public const int UNREACHEBLE_STATE = DFADefinition.UNREACHEBLE_STATE;
 
         protected ContextFrame m_context;
         Stack<ContextFrame> m_contextStack = new Stack<ContextFrame>();