Optional ";"s are currently removed as the parser does not
record them. The case of empty statements is more complex.
an empty statement may be required to be retained:
while (x++<10)
;
while others could be removed. At present the pretty printer
retains all empty statements.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Logged In: YES
user_id=476481
Optional ";"s are currently removed as the parser does not
record them. The case of empty statements is more complex.
an empty statement may be required to be retained:
while (x++<10)
;
while others could be removed. At present the pretty printer
retains all empty statements.