Ejemplo n.º 1
0
 public ParserGen(Parser parser)
 {
     tab = parser.tab;
     trace = parser.trace;
     buffer = parser.scanner.buffer;
     errorNr = -1;
     usingPos = null;
 }
Ejemplo n.º 2
0
 public XmlLangDefinition(Tab tab, Errors errors)
 {
     this.tab = tab;
     this.errors = errors;
     useVector = new bool[Enum.GetValues(typeof(Options)).Length];
     Tags = new Dictionary<string, TagInfo>();
     Attrs = new Dictionary<string, int>();
     PInstructions = new Dictionary<string, int>();
 }
Ejemplo n.º 3
0
 public XmlScannerData(Parser parser)
 {
     tab = parser.tab;
     errors = parser.errors;
     XmlLangMap = new Dictionary<string, XmlLangDefinition>();
 }