Package org.codehaus.groovy.ast.stmt
AST nodes for Groovy statements
-
Interface Summary Interface Description LoopingStatement This is an AST Node that provides some sort of looping mechanism. -
Class Summary Class Description AssertStatement Represents an assert statement.BlockStatement A list of statements and a scope.BreakStatement Represents a break statement in a switch or loop statementCaseStatement Represents a case statement in a switch statementCatchStatement Represents a catch (Exception var) { } statementContinueStatement Represents a continue statement in a loop statementDoWhileStatement Represents a do { ...EmptyStatement ExpressionStatement A simple statement such as a method call where the return value is ignoredForStatement Represents a standard for loop in GroovyIfStatement Represents an if (condition) { ...ReturnStatement A return statementStatement Base class for any statement.SwitchStatement Represents a switch (object) { case value: ...SynchronizedStatement Represents a synchronized statementThrowStatement Represents a throw statementTryCatchStatement Represents a try { ...WhileStatement Represents a while (condition) { ...