Example #1
0
 public cLexem(string a_name, eLexType a_type)
 {
     cf_Name = a_name;
     cf_type = a_type;
     if (a_name == cc_Epsilon)
         cf_type = eLexType.Epsilon;
 }
Example #2
0
 private cLexem(string a_name, eLexType a_type)
 {
     cf_firstCache = null;
     cf_EpsilonCount = 0;
     cf_Name = a_name;
     cf_type = a_type;
     if (a_name == cc_Epsilon)
         cf_type = eLexType.Epsilon;
 }
Example #3
0
 public cLexem(string a_name, eLexType a_type)
 {
     cf_Name = a_name;
     cf_type = a_type;
     if (a_name == cc_Epsilon)
     {
         cf_type = eLexType.Epsilon;
     }
 }
Example #4
0
 private cLexem(string a_name, eLexType a_type)
 {
     cf_firstCache   = null;
     cf_EpsilonCount = 0;
     cf_Name         = a_name;
     cf_type         = a_type;
     if (a_name == cc_Epsilon)
     {
         cf_type = eLexType.Epsilon;
     }
 }