WhileLoopTree
WhileLoopTree (while 문 (while 반복문 노드))
while 반복문 문장을 나타내는 트리 노드입니다. StatementTree를 상속합니다. 예를 들어 while (condition) statement 형태를 표현합니다.
본문
getCondition()은 반복문의 조건을, getStatement()는 반복문의 본문을 반환합니다. Java 언어 명세 14.12절(The while Statement)을 참조합니다.