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