Exemplo n.º 1
0
        public static string PrettyMultiple(InstrNode[] instructions)
        {
            string result = "{";

            for (int i = 0; i < instructions.Length; i++)
            {
                Instr instr = instructions[i].Value;
                result += instr.Pretty();
                if (i < instructions.Length - 1)
                {
                    result += ", ";
                }
            }
            return(result + "}");
        }
Exemplo n.º 2
0
 public string Pretty(int level)
 {
     return("InstrNode: " + Value.Pretty(level));
 }