Пример #1
0
 public ExpressionToFormula()
 {
     state = new State();
     state.PushScope(new Scope());
 }
Пример #2
0
 void EvalIf(MethodCallExpression exp, State state)
 {
     EvalExpression(exp, state);
     var test = state.CurrentScope.PopFormula();
     state.CurrentScope.PushFormula(test);
     state.PushScope(new Scope());
 }