blob: 54c1cb470279520cad2786651aa8beb2d1784c38 [file] [log] [blame]
/*=============================================================================#
# Copyright (c) 2007, 2018 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.r.core.rlang.RTerminal;
/**
*
*/
public abstract class Symbol extends SingleValue {
static final class Std extends Symbol {
Std() {
}
@Override
public final RTerminal getOperator(final int index) {
return null;
}
}
static final class G extends Symbol {
G() {
}
@Override
public final RTerminal getOperator(final int index) {
return RTerminal.SYMBOL_G;
}
}
protected Symbol() {
}
@Override
public final NodeType getNodeType() {
return NodeType.SYMBOL;
}
@Override
public final void acceptInR(final RAstVisitor visitor) throws InvocationTargetException {
visitor.visit(this);
}
@Override
public final boolean equalsSingle(final RAstNode element) {
if (element.getNodeType() != NodeType.SYMBOL) {
return false;
}
final Symbol other= (Symbol) element;
return ((this.text == other.text
|| (this.text != null && this.text.equals(other.text)) )
);
}
@Override
void appendPathElement(final StringBuilder s) {
// if (parent != null) {
// s.append(parent.getEqualsIndex(this));
// }
s.append('$');
s.append(this.text);
}
}