blob: ddee503be7a35bec10378e508557d424aba4e7bd [file] [log] [blame]
/* This file was generated by SableCC (http://www.sablecc.org/). */
package com.google.clearsilver.jsilver.syntax.node;
import com.google.clearsilver.jsilver.syntax.analysis.*;
@SuppressWarnings("nls")
public final class ANoopExpression extends PExpression
{
public ANoopExpression()
{
// Constructor
}
@Override
public Object clone()
{
return new ANoopExpression();
}
public void apply(Switch sw)
{
((Analysis) sw).caseANoopExpression(this);
}
@Override
public String toString()
{
return "";
}
@Override
void removeChild(@SuppressWarnings("unused") Node child)
{
// Remove child
throw new RuntimeException("Not a child.");
}
@Override
void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild)
{
// Replace child
throw new RuntimeException("Not a child.");
}
}