-
- All Superinterfaces:
StatementTree
,Tree
- All Known Subinterfaces:
BreakTree
,ContinueTree
public interface GotoTree extends StatementTree
A tree node for a statement that jumps to a target. Note that ECMAScript does not support a goto statement. But, this Tree type serves as a super interface forBreakTree
andContinueTree
.- Since:
- 9
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getLabel()
Label associated with this goto statement.-
Methods inherited from interface org.openjdk.nashorn.api.tree.Tree
accept, getEndPosition, getKind, getStartPosition
-
-