blob: 5047d203c6d576645c552b9867719ac656c650ad [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.jcommons.lang.Nullable;
import org.eclipse.statet.ltk.ast.core.AstNode;
import org.eclipse.statet.ltk.ast.core.AstVisitor;
import org.eclipse.statet.r.core.rlang.RTerminal;
/**
* <code>NULL</code>
*/
@NonNullByDefault
public final class NullConst extends RAstNode {
NullConst() {
}
@Override
public final NodeType getNodeType() {
return NodeType.NULL_CONST;
}
@Override
public final @Nullable RTerminal getOperator(final int index) {
return null;
}
@Override
public final boolean hasChildren() {
return false;
}
@Override
public final int getChildCount() {
return 0;
}
@Override
public final RAstNode getChild(final int index) {
throw new IndexOutOfBoundsException();
}
@Override
public final RAstNode[] getChildren() {
return NO_CHILDREN;
}
@Override
public final int getChildIndex(final AstNode child) {
return -1;
}
@Override
public final void acceptInR(final RAstVisitor visitor) throws InvocationTargetException {
visitor.visit(this);
}
@Override
public final void acceptInRChildren(final RAstVisitor visitor) {
}
@Override
public final void acceptInChildren(final AstVisitor visitor) {
}
@Override
final @Nullable Expression getExpr(final RAstNode child) {
return null;
}
@Override
final @Nullable Expression getLeftExpr() {
return null;
}
@Override
final @Nullable Expression getRightExpr() {
return null;
}
@Override
public final boolean equalsSingle(final RAstNode element) {
return (NodeType.NULL_CONST == element.getNodeType());
}
@Override
final int getMissingExprStatus(final Expression expr) {
throw new IllegalArgumentException();
}
@Override
public boolean equalsValue(final RAstNode element) {
return (NodeType.NULL_CONST == element.getNodeType());
}
}