Esempio n. 1
0
 public ralyn(string ralynString)
 {
     this.type           = ralyn.TypeOf.Root;
     this.tag            = new ralynTag();
     this.sValue         = "";
     this.nValue         = double.NaN;
     this.children       = ralyn.Lex(ralynString);
     this.representation = "null";
     this.lineNumber     = -1;
     this.charNumber     = -1;
 }
Esempio n. 2
0
 public ralyn()
 {
     this.type           = ralyn.TypeOf.Null;
     this.tag            = new ralynTag();
     this.sValue         = "";
     this.nValue         = double.NaN;
     this.children       = null;
     this.representation = "null";
     this.lineNumber     = -1;
     this.charNumber     = -1;
 }