Example #1
0
        public Type Visit(RegularStatement regularStatement, FunctionGeneratorEnvironment arg)
        {
            regularStatement.expr.Accept(this, arg);
            Program.Emit(T42Instruction.POP(1));

            return(null);
        }
Example #2
0
 public IValue Visit(RegularStatement regularStatement)
 {
     //Console.WriteLine("Regular Statement");
     regularStatement.expr.Accept(this);
     return(null);
 }
Example #3
0
        public Statement Visit(RegularStatement regularStatement)
        {
            regularStatement.expr.Accept(this);

            return(null);
        }
Example #4
0
        public Void Visit(RegularStatement regularStatement, SortedSet <string> free)
        {
            regularStatement.expr.Accept(this, free);

            return(null);
        }