//generated by abstract-syntax-gen package de.peeeq.wurstscript.luaAst; import java.util.*; @SuppressWarnings({"cast", "unused", "rawtypes"}) class LuaExprFuncRefImpl implements LuaExprFuncRef{ LuaExprFuncRefImpl(LuaFunction func) { if (func == null) throw new IllegalArgumentException("Element func must not be null."); this.func = func; } 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 action) { } public int size() { return 0; } @Override public LuaExprFuncRef copy() { LuaExprFuncRef result = new LuaExprFuncRefImpl(func); return result; } @Override public LuaExprFuncRef copyWithRefs() { LuaExprFuncRef res = copy(); return res; } @Override public void clearAttributes() { clearAttributesLocal(); } @Override public void clearAttributesLocal() { } @Override public void accept(Visitor v) { v.visit(this); } @Override public T match(LuaExprAtomic.Matcher matcher) { return matcher.case_LuaExprFuncRef(this); } @Override public void match(LuaExprAtomic.MatcherVoid matcher) { matcher.case_LuaExprFuncRef(this); } @Override public T match(LuaStatement.Matcher matcher) { return matcher.case_LuaExprFuncRef(this); } @Override public void match(LuaStatement.MatcherVoid matcher) { matcher.case_LuaExprFuncRef(this); } @Override public T match(LuaExpr.Matcher matcher) { return matcher.case_LuaExprFuncRef(this); } @Override public void match(LuaExpr.MatcherVoid matcher) { matcher.case_LuaExprFuncRef(this); } @Override public T match(LuaExprOpt.Matcher matcher) { return matcher.case_LuaExprFuncRef(this); } @Override public void match(LuaExprOpt.MatcherVoid matcher) { matcher.case_LuaExprFuncRef(this); } @Override public T match(Element.Matcher matcher) { return matcher.case_LuaExprFuncRef(this); } @Override public void match(Element.MatcherVoid matcher) { matcher.case_LuaExprFuncRef(this); } @Override public String toString() { return "LuaExprFuncRef(" + func+")"; } public boolean structuralEquals(Element e) { if (e instanceof LuaExprFuncRef) { LuaExprFuncRef o = (LuaExprFuncRef) e; return this.func == o.getFunc(); } else { return false; } } /** */ public void print(StringBuilder sb, int indent) { de.peeeq.wurstscript.translation.lua.printing.LuaPrinter.print((LuaExprFuncRef)this, sb, indent); } }