Add printout
This commit is contained in:
parent
14d0475d59
commit
e69a367c33
@ -277,6 +277,7 @@ public class StatementGenerator {
|
||||
ret.setStatement();
|
||||
return ret;
|
||||
default:
|
||||
System.out.println(stmt.getClass());
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
}
|
||||
|
@ -413,7 +413,8 @@ public class OutputGenerator implements ASTVisitor {
|
||||
}
|
||||
untab();
|
||||
out.append(tabs);
|
||||
out.append("}");
|
||||
out.append("}::");
|
||||
switchStmt.getType().accept(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
@ -445,8 +446,10 @@ public class OutputGenerator implements ASTVisitor {
|
||||
|
||||
@Override
|
||||
public void visit(Yield aYield) {
|
||||
out.append("yield ");
|
||||
out.append("yield (");
|
||||
aYield.retexpr.accept(this);
|
||||
out.append(")::");
|
||||
aYield.getType().accept(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Loading…
Reference in New Issue
Block a user