Exemple #1
0
        private Exp AnalyPropertyValueExp()
        {
            ExpRawParser parser = new ExpRawParser();
            Exp          exp1   = parser.Parse(Raw.ValueExp, ExpContext);
            Exp          exp2   = exp1.Analy();

            return(exp2);
        }
Exemple #2
0
        protected virtual Exp ParseAnalyRawExp(ExpRaw expRaw)
        {
            ExpRawParser rawparser = new ExpRawParser();
            ContextExp   context   = new ContextExp(this.ProcContext, this);
            Exp          exp2      = rawparser.Parse(expRaw, context);
            Exp          exp3      = exp2.Analy();

            return(exp3);
        }