/* 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 ANoopCommand extends PCommand { public ANoopCommand() { // Constructor } @Override public Object clone() { return new ANoopCommand(); } public void apply(Switch sw) { ((Analysis) sw).caseANoopCommand(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."); } }