blob: f44d60e5a1fb34143d427f8c6d8f15a96d0d80a3 [file] [log] [blame]
/*=============================================================================#
# Copyright (c) 2007, 2020 Stephan Wahlbrink and others.
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
# https://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
# which is available at https://www.apache.org/licenses/LICENSE-2.0.
#
# SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
#
# Contributors:
# Stephan Wahlbrink <sw@wahlbrink.eu> - initial API and implementation
#=============================================================================*/
package org.eclipse.statet.r.core.rsource.ast;
import java.lang.reflect.InvocationTargetException;
import org.eclipse.statet.jcommons.lang.NonNullByDefault;
import org.eclipse.statet.r.core.rlang.RTerminal;
/**
* <code>{ ... }</code>
*/
@NonNullByDefault
public final class Block extends ExpressionList {
int blockCloseOffset= NA_OFFSET;
Block() {
}
@Override
public final NodeType getNodeType() {
return NodeType.BLOCK;
}
@Override
public final RTerminal getOperator(final int index) {
return RTerminal.BLOCK_OPEN;
}
public int getBlockCloseOffset() {
return this.blockCloseOffset;
}
@Override
public final void acceptInR(final RAstVisitor visitor) throws InvocationTargetException {
visitor.visit(this);
}
@Override
public final boolean equalsSingle(final RAstNode element) {
return (NodeType.BLOCK == element.getNodeType());
}
final void updateOffsets() {
if (this.blockCloseOffset != NA_OFFSET) {
this.endOffset= this.blockCloseOffset + 1;
}
else {
final int count= getChildCount();
if (count > 0) {
this.endOffset= getChild(count - 1).endOffset;
}
else {
this.endOffset= this.startOffset + 1;
}
}
}
}