public NpegParser(InputIterator iterator, IAstNodeFactory createCustomAstNode)
 {
     this.iterator         = iterator;
     pointerAstNodeFactory = createCustomAstNode;
     sandbox.Push(new Stack <AstNode>());
 }
예제 #2
0
		public NpegParser(InputIterator iterator, IAstNodeFactory createCustomAstNode)
		{
			this.iterator = iterator;
			pointerAstNodeFactory = createCustomAstNode;
			sandbox.Push(new Stack<AstNode>());
		}
 public NpegParser(InputIterator iterator)
 {
     this.iterator = iterator;
     sandbox.Push(new Stack <AstNode>());
 }
예제 #4
0
		public NpegParser(InputIterator iterator)
		{
			this.iterator = iterator;
			sandbox.Push(new Stack<AstNode>());
		}