Exemple #1
0
 public DimAST(FileAST astFile, SectionNameRaw nameSection, SectionExtendsRaw extendsSection, SectionPropertiesRaw propertiesSection)
     : base(astFile)//, nameSection)
 {
     DimNameSection = new SectionDimName(nameSection);
     Extends        = new SectionExtendsDim(extendsSection);
     Properties     = new SectionPropertiesDim(this, propertiesSection);
 }
 public PropertyAST(PropertyASTRaw raw, SectionPropertiesDim parentAST)
 {
     Raw       = raw;
     ParentAST = parentAST;
 }