YAMP.ForKeyword.Interpret C# (CSharp) Method

Interpret() public method

public Interpret ( Value>.IDictionary symbols ) : Value
symbols Value>.IDictionary
return Value
        public override Value Interpret(IDictionary<String, Value> symbols)
        {
            Initialization.Interpret(symbols);
            __break = false;

            while (InterpretCondition(symbols))
            {
                Body.Interpret(symbols);

                if (__break)
                {
                    break;
                }

                End.Interpret(symbols);
            }

            return null;
        }