toLLVM prettyprinter pour assign
This commit is contained in:
@@ -45,7 +45,7 @@ public class PrettyprinterVisitor implements ProgramVisitor<String,String>,
|
||||
|
||||
@Override
|
||||
public String visitAssign(AssignImp instr, String indent) {
|
||||
return instr.t()+ " :=" + instr.e().accept(this,"");
|
||||
return indent + instr.t()+ " := " + instr.e().accept(this,"");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user