Exemplo n.º 1
0
 public void Visit(BoundCallStatement st)
 {
     sa.TabPrint("");
     st.Call.Accept(this);
     sa.Print(";");
 }
Exemplo n.º 2
0
        private async Task <Either <RuntimeErrors, Success> > Execute(BoundCallStatement boundCallStatement)
        {
            var either = await Evaluate(boundCallStatement.Call);

            return(either.MapRight(o => new Success()));
        }