decl_array

This commit is contained in:
Vu Tuan Minh
2025-04-30 16:34:24 +02:00
parent c58d524dd1
commit a918ae8736
5 changed files with 6 additions and 6 deletions

View File

@@ -70,7 +70,7 @@ public class PrettyprinterVisitor implements ProgramVisitor<String,String>,
if(instr.size()==null){
str+= instr.nom();
}else{
str+= instr.nom()+ "["+instr.size()+"]";
str+= instr.nom()+ "["+instr.size().accept(this, indent)+"]";
}
return str;
}