diff Implab/Parsing/DFAutomaton.cs @ 62:62b440d46313

Added Skip method to JSON parser to skip contents of the current node
author cin
date Sun, 22 Jun 2014 04:14:02 +0400
parents c0bf853aa04f
children 97fbbf816844
line wrap: on
line diff
--- a/Implab/Parsing/DFAutomaton.cs	Thu Jun 19 20:04:20 2014 +0400
+++ b/Implab/Parsing/DFAutomaton.cs	Sun Jun 22 04:14:02 2014 +0400
@@ -20,7 +20,7 @@
         protected ContextFrame m_context;
         Stack<ContextFrame> m_contextStack = new Stack<ContextFrame>();
 
-        public int Level {
+        protected int Level {
             get { return m_contextStack.Count; }
         }