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

jscover.mozilla.javascript.ast.BreakStatement Maven / Gradle / Ivy

Go to download

Rhino is an open-source implementation of JavaScript written entirely in Java. It is typically embedded into Java applications to provide scripting to end users.

There is a newer version: 1.7R5pre05
Show newest version
/* -*- Mode: java; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

package jscover.mozilla.javascript.ast;

import jscover.mozilla.javascript.Token;

/**
 * A break statement.  Node type is {@link Token#BREAK}.

* *

BreakStatement :
 *   break [no LineTerminator here] [Identifier] ;
*/ public class BreakStatement extends Jump { private Name breakLabel; private AstNode target; { type = Token.BREAK; } public BreakStatement() { } public BreakStatement(int pos) { // can't call super (Jump) for historical reasons position = pos; } public BreakStatement(int pos, int len) { position = pos; length = len; } /** * Returns the intended label of this break statement * @return the break label. {@code null} if the source code did * not specify a specific break label via "break <target>". */ public Name getBreakLabel() { return breakLabel; } /** * Sets the intended label of this break statement, e.g. 'foo' * in "break foo". Also sets the parent of the label to this node. * @param label the break label, or {@code null} if the statement is * just the "break" keyword by itself. */ public void setBreakLabel(Name label) { breakLabel = label; if (label != null) label.setParent(this); } /** * Returns the statement to break to * @return the break target. Only {@code null} if the source * code has an error in it. */ public AstNode getBreakTarget() { return target; } /** * Sets the statement to break to. * @param target the statement to break to * @throws IllegalArgumentException if target is {@code null} */ public void setBreakTarget(Jump target) { assertNotNull(target); this.target = target; setJumpStatement(target); } @Override public String toSource(int depth) { StringBuilder sb = new StringBuilder(); sb.append(makeIndent(depth)); sb.append("break"); if (breakLabel != null) { sb.append(" "); sb.append(breakLabel.toSource(0)); } sb.append(";\n"); return sb.toString(); } /** * Visits this node, then visits the break label if non-{@code null}. */ @Override public void visit(NodeVisitor v) { if (v.visit(this) && breakLabel != null) { breakLabel.visit(v); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy