//generated by abstract-syntax-gen package de.peeeq.wurstscript.luaAst; import java.util.*; public interface LuaExprUnary extends LuaExpr, Element { void setOpU(LuaOpUnary opU); LuaOpUnary getOpU(); void setRight(LuaExpr right); LuaExpr getRight(); Element getParent(); LuaExprUnary copy(); LuaExprUnary copyWithRefs(); void clearAttributes(); void clearAttributesLocal(); /** */ public abstract void print(StringBuilder sb, int indent); }