Exemplo n.º 1
0
        public override sealed void Call(Call action)
        {
            Function function;

            if (!_functions.TryGetValue(action.Name, out function))
                throw new ScriptException(String.Format(UILabels.FunctionNotFound, action.Name));

            _callingFunction = true;

            function.Visit(this);

            _callingFunction = false;
        }
Exemplo n.º 2
0
 public virtual void Call(Call action)
 {
 }