public void Analy(DimAST ast) { DimTree = ast; base.AnalyRaw(ast); //ZCClassInfo cclass = this.EnumTree.ClassContext.GetZCompilingType(); //this.FileContext.ImportUseContext.ImportCompilingName(cclass); }
public SectionPropertiesDim(DimAST dimAST, SectionPropertiesRaw raw) { this.dimAST = dimAST; Raw = raw; for (int i = 0; i < Raw.Properties.Count; i++) { PropertyASTRaw propertyRaw = Raw.Properties[i]; PropertyAST propertyAST = new PropertyAST(propertyRaw, this); PropertyASTList.Add(propertyAST); } }