public void SetSource(Stream source, int fallbackCodePage)
 {
     this.buffer = ScanBuff.GetBuffer(source, fallbackCodePage);
     this.lNum   = 0;
     this.code   = '\n';
     GetCode();
 }
 public void SetSource(Stream source)
 {
     this.buffer = ScanBuff.GetBuffer(source);
     this.lNum   = 0;
     this.code   = '\n';
     GetCode();
 }
 public void SetSource(IList <string> source)
 {
     this.buffer = ScanBuff.GetBuffer(source);
     this.code   = '\n';
     this.lNum   = 0;
     GetCode();
 }
 void RestoreBuffCtx(BufferContext value)
 {
     this.buffer = value.buffSv;
     this.code   = value.chrSv;
     this.cCol   = value.cColSv;
     this.lNum   = value.lNumSv;
 }
 public void SetSource(string source, int offset)
 {
     this.buffer     = ScanBuff.GetBuffer(source);
     this.buffer.Pos = offset;
     this.lNum       = 0;
     this.code       = '\n';
     GetCode();
 }
 public void SetSource(System.IO.Stream source)
 {
     this.buffer = new BuildBuffer(source);
     code        = buffer.Read();
 }