call
This commit is contained in:
@@ -157,7 +157,7 @@ public class PrettyprinterVisitor implements ProgramVisitor<String,String>,
|
||||
|
||||
@Override
|
||||
public String visitVoidFunction(VoidFunctionImp instr, String h) {
|
||||
String str = instr.nom()+ "( ";
|
||||
String str = h+instr.nom()+ "(";
|
||||
for(int i=0;i<instr.expr().size();i++){
|
||||
str+= instr.expr().get(i).accept(this,h);
|
||||
if(i<instr.expr().size()-1){
|
||||
|
||||
Reference in New Issue
Block a user