Ejemplo n.º 1
0
 public void AnalyExpDim()
 {
     for (int i = 0; i < Propertys.Count; i++)
     {
         ClassPropertyAST p = Propertys[i];
         p.AnalyExpDim();
     }
 }
Ejemplo n.º 2
0
 public void AnalyNames()
 {
     //Propertys.Clear();
     for (int i = 0; i < Propertys.Count; i++)
     {
         ClassPropertyAST p = Propertys[i];
         p.AnalyName();
     }
 }
Ejemplo n.º 3
0
 public SectionPropertiesClass(ClassAST classAST, SectionPropertiesRaw raw)
 {
     ASTClass          = classAST;
     Raw               = raw;
     PropertiesContext = new ContextMethod(ASTClass.ClassContext);
     for (int i = 0; i < Raw.Properties.Count; i++)
     {
         PropertyASTRaw   item = Raw.Properties[i];
         ClassPropertyAST p    = new ClassPropertyAST(this, item);
         Propertys.Add(p);
     }
 }