All Superinterfaces:
ICCompound, ICElement, ICGenericBreakable, ICGenericLoop, ICGenericWhileLoop, ICStatement

@Ser public interface ICDoWhileStm extends ICGenericWhileLoop
C AST interface to represent a do-while loop statement. A do-while loop is a post-tested loop, that consists of a body and a test predicate.

Example:

 do {
     // body
 }
 while(predicate);