net.sourceforge.pmd.lang.java.ast.ASTBreakStatement Maven / Gradle / Ivy
/**
* BSD-style license; for more info see http://pmd.sourceforge.net/license.html
*/
package net.sourceforge.pmd.lang.java.ast;
import java.util.function.Function;
import org.checkerframework.checker.nullness.qual.Nullable;
import net.sourceforge.pmd.lang.ast.NodeStream;
/**
* A break statement, that jumps to a named label (or exits the current loop).
*
*
*
* BreakStatement ::= "break" <IDENTIFIER>? ";"
*
*
*/
public final class ASTBreakStatement extends AbstractStatement {
private static final Function