//generated by abstract-syntax-gen package de.peeeq.wurstscript.luaAst; import java.util.*; @SuppressWarnings({"cast", "unused", "rawtypes"}) class LuaTableFieldsImpl extends LuaTableFields { private Element parent; public Element getParent() { return parent; } public void setParent(Element parent) { if (parent != null && this.parent != null) { throw new Error("Cannot change parent of element " + this.getClass().getSimpleName() + ", as it is already used in another tree." + "Use the copy method to create a new tree or remove the tree from its old parent or set the parent to null before moving the tree. "); } this.parent = parent; } public void replaceBy(Element other) { if (parent == null) throw new RuntimeException("Node not attached to tree."); for (int i=0; i) this).set(i, (LuaTableField) newElement); } @Override public T match(Element.Matcher matcher) { return matcher.case_LuaTableFields(this); } @Override public void match(Element.MatcherVoid matcher) { matcher.case_LuaTableFields(this); } @Override public void accept(Visitor v) { v.visit(this); } @Override public void clearAttributes() { for (LuaTableField child : this) { child.clearAttributes(); } clearAttributesLocal(); } @Override public void clearAttributesLocal() { } /** */ public void print(StringBuilder sb, int indent) { de.peeeq.wurstscript.translation.lua.printing.LuaPrinter.print((LuaTableFields)this, sb, indent); } @Override public String toString() { StringBuilder result = new StringBuilder("LuaTableFields("); boolean first = true; for (LuaTableField i : this ) { if (!first) { result.append(", "); } if (result.length() > 1000) { result.append("..."); break; } result.append(i); first = false; } result.append(")"); return result.toString(); } }