Пример #1
0
		public virtual void resetState(InputBuffer ib)
		{
			text.Length = 0;
			traceDepth = 0;
			inputState.resetInput(ib);
			refresh();
		}
Пример #2
0
		public CharScanner(InputBuffer cb) : this()
		{
			inputState = new LexerSharedInputState(cb);
			cached_LA2 = inputState.input.LA(2);
			cached_LA1 = inputState.input.LA(1);
		}
Пример #3
0
		public virtual void resetInput(Stream s)
		{
			reset();
			input = new ByteBuffer(s);
		}
Пример #4
0
		public virtual void resetInput(TextReader tr)
		{
			reset();
			input = new CharBuffer(tr);
		}
Пример #5
0
 public CharScanner(InputBuffer cb)
     : this()
 {
     inputState = new LexerSharedInputState(cb);
 }
Пример #6
0
 public CharScanner(InputBuffer cb) : this()
 {
     inputState = new LexerSharedInputState(cb);
     cached_LA2 = inputState.input.LA(2);
     cached_LA1 = inputState.input.LA(1);
 }
Пример #7
0
 public virtual void resetState(InputBuffer ib)
 {
     text.Length = 0;
     traceDepth  = 0;
     inputState.resetInput(ib);
 }
Пример #8
0
		public CalcLexer(InputBuffer ib)		 : this(new LexerSharedInputState(ib))
		{
		}
Пример #9
0
 public virtual void resetInput(Stream s)
 {
     reset();
     input = new ByteBuffer(s);
 }
Пример #10
0
 public virtual void resetInput(TextReader tr)
 {
     reset();
     input = new CharBuffer(tr);
 }
Пример #11
0
 public virtual void resetInput(InputBuffer ib)
 {
     reset();
     input = ib;
 }
Пример #12
0
 public LexerSharedInputState(InputBuffer inbuf)
 {
     initialize();
     input = inbuf;
 }
Пример #13
0
 public fpc2ilLexer(InputBuffer ib)               : this(new LexerSharedInputState(ib))
 {
 }
Пример #14
0
 public LexerSharedInputState(InputBuffer inbuf)
 {
     input = inbuf;
 }
Пример #15
0
 public CharScanner(InputBuffer cb) : this()
 {
     inputState = new LexerSharedInputState(cb);
 }
 public LexerSharedInputState(InputBuffer inbuf)
 {
     input = inbuf;
 }
Пример #17
0
		public LexerSharedInputState(InputBuffer inbuf)
		{
			initialize();
			input = inbuf;
		}
Пример #18
0
 public AspectLanguageLexer(InputBuffer ib)               : this(new LexerSharedInputState(ib))
 {
 }
Пример #19
0
		public virtual void resetInput(InputBuffer ib)
		{
			reset();
			input = ib;
		}
 public L(InputBuffer ib)
     : this(new LexerSharedInputState(ib))
 {
 }
Пример #21
0
		public DebuggingCharScanner(InputBuffer cb) : base(cb)
		{
			InitBlock();
		}