//generated by abstract-syntax-gen package de.peeeq.wurstscript.luaAst; import java.util.*; public interface LuaExprFunctionCallByName extends LuaCallExpr, Element { void setFuncName(String funcName); String getFuncName(); void setArguments(LuaExprlist arguments); LuaExprlist getArguments(); Element getParent(); LuaExprFunctionCallByName copy(); LuaExprFunctionCallByName copyWithRefs(); void clearAttributes(); void clearAttributesLocal(); /** */ public abstract void print(StringBuilder sb, int indent); }