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

@Ser public interface ICWhileStm extends ICGenericWhileLoop
C AST interface to represent while loop statements. A while loop is a pre-tested loop, that consists of a test predicate and a body.
 while(predicate) {
     // body
 }