All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sourceforge.pmd.lang.java.ast.ASTBreakStatement Maven / Gradle / Ivy

There is a newer version: 7.7.0
Show newest version
/**
 * 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 BREAK_TARGET_MAPPER = NodeStream.asInstanceOf(ASTLoopStatement.class, ASTSwitchStatement.class); ASTBreakStatement(int id) { super(id); } @Override protected R acceptVisitor(JavaVisitor visitor, P data) { return visitor.visit(this, data); } /** * Returns the label, or null if there is none. */ public @Nullable String getLabel() { return getImage(); } /** * Returns the statement that is the target of this break. This may be * a loop, or a switch statement, or a labeled statement. This may * return null if the code is invalid. */ public ASTStatement getTarget() { String myLabel = this.getLabel(); if (myLabel == null) { return ancestors().map(BREAK_TARGET_MAPPER).first(); } return ancestors(ASTLabeledStatement.class) .filter(it -> it.getLabel().equals(myLabel)) .first(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy