Example #1
0
 public void Analy(DimAST ast)
 {
     DimTree = ast;
     base.AnalyRaw(ast);
     //ZCClassInfo cclass = this.EnumTree.ClassContext.GetZCompilingType();
     //this.FileContext.ImportUseContext.ImportCompilingName(cclass);
 }
Example #2
0
        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);
            }
        }