//generated by abstract-syntax-gen package de.peeeq.wurstscript.jassIm; import java.util.*; @SuppressWarnings({"cast", "unused", "rawtypes"}) class ImCompiletimeExprImpl implements ImCompiletimeExpr{ ImCompiletimeExprImpl(de.peeeq.wurstscript.ast.Element trace, ImExpr expr, int executionOrderIndex) { if (trace == null) throw new IllegalArgumentException("Element trace must not be null."); if (expr == null) throw new IllegalArgumentException("Element expr must not be null."); this.trace = trace; this.expr = expr; this.executionOrderIndex = executionOrderIndex; expr.setParent(this); } 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) { action.accept(this.expr); } public int size() { return 1; } @Override public ImCompiletimeExpr copy() { ImCompiletimeExpr result = new ImCompiletimeExprImpl(trace, (ImExpr) this.expr.copy(), executionOrderIndex); return result; } @Override public ImCompiletimeExpr copyWithRefs() { ImCompiletimeExpr res = copy(); return res; } @Override public void clearAttributes() { expr.clearAttributes(); clearAttributesLocal(); } @Override public void clearAttributesLocal() { zzattr_evaluationResult_state = 0; } @Override public void accept(Visitor v) { v.visit(this); } @Override public T match(ImExprOpt.Matcher matcher) { return matcher.case_ImCompiletimeExpr(this); } @Override public void match(ImExprOpt.MatcherVoid matcher) { matcher.case_ImCompiletimeExpr(this); } @Override public T match(ImStmt.Matcher matcher) { return matcher.case_ImCompiletimeExpr(this); } @Override public void match(ImStmt.MatcherVoid matcher) { matcher.case_ImCompiletimeExpr(this); } @Override public T match(ElementWithTrace.Matcher matcher) { return matcher.case_ImCompiletimeExpr(this); } @Override public void match(ElementWithTrace.MatcherVoid matcher) { matcher.case_ImCompiletimeExpr(this); } @Override public T match(ImPrintable.Matcher matcher) { return matcher.case_ImCompiletimeExpr(this); } @Override public void match(ImPrintable.MatcherVoid matcher) { matcher.case_ImCompiletimeExpr(this); } @Override public T match(ImExpr.Matcher matcher) { return matcher.case_ImCompiletimeExpr(this); } @Override public void match(ImExpr.MatcherVoid matcher) { matcher.case_ImCompiletimeExpr(this); } @Override public T match(Element.Matcher matcher) { return matcher.case_ImCompiletimeExpr(this); } @Override public void match(Element.MatcherVoid matcher) { matcher.case_ImCompiletimeExpr(this); } public boolean structuralEquals(Element e) { if (e instanceof ImCompiletimeExpr) { ImCompiletimeExpr o = (ImCompiletimeExpr) e; return this.expr.structuralEquals(o.getExpr()) && java.util.Objects.equals(executionOrderIndex, o.getExecutionOrderIndex()); } else { return false; } } /** */ public void print(java.lang.Appendable sb, int indent) { de.peeeq.wurstscript.translation.imtranslation.ImPrinter.print((ImCompiletimeExpr)this, sb, indent); } /** */ public String toString() { return de.peeeq.wurstscript.translation.imtranslation.ImPrinter.asString((ImCompiletimeExpr)this); } /** */ public de.peeeq.wurstscript.translation.imtranslation.Flatten.Result flatten(de.peeeq.wurstscript.translation.imtranslation.ImTranslator translator, de.peeeq.wurstscript.jassIm.ImFunction f) { return de.peeeq.wurstscript.translation.imtranslation.Flatten.flatten((ImCompiletimeExpr)this, translator, f); } /** */ public de.peeeq.wurstscript.translation.imtranslation.purity.PurityLevel attrPurity() { return de.peeeq.wurstscript.translation.imtranslation.purity.PurityLevels.calculate((ImCompiletimeExpr)this); } /** */ public void translate(java.util.List stmts, de.peeeq.wurstscript.jassAst.JassFunction f, de.peeeq.wurstscript.translation.imtojass.ImToJassTranslator translator) { de.peeeq.wurstscript.translation.imtojass.StatementTranslation.translate((ImCompiletimeExpr)this, stmts, f, translator); } /** */ public de.peeeq.wurstscript.jassAst.JassExpr translate(de.peeeq.wurstscript.translation.imtojass.ImToJassTranslator translator) { return de.peeeq.wurstscript.translation.imtojass.ExprTranslation.translate((ImCompiletimeExpr)this, translator); } /** */ public ImType attrTyp() { return de.peeeq.wurstscript.translation.imtojass.ImAttrType.getType((ImCompiletimeExpr)this); } /** */ public ImFunction getNearestFunc() { return de.peeeq.wurstscript.translation.imtojass.ImAttributes.getNearestFunc((ImCompiletimeExpr)this); } /** */ public void translateStmtToLua(java.util.List res, de.peeeq.wurstscript.translation.lua.translation.LuaTranslator tr) { de.peeeq.wurstscript.translation.lua.translation.StmtTranslation.translate((ImCompiletimeExpr)this, res, tr); } /** */ public de.peeeq.wurstscript.luaAst.LuaExpr translateToLua(de.peeeq.wurstscript.translation.lua.translation.LuaTranslator tr) { return de.peeeq.wurstscript.translation.lua.translation.ExprTranslation.translate((ImCompiletimeExpr)this, tr); } /** */ public void runStatement(de.peeeq.wurstscript.intermediatelang.interpreter.ProgramState globalState, de.peeeq.wurstscript.intermediatelang.interpreter.LocalState localState) { de.peeeq.wurstscript.intermediatelang.interpreter.RunStatement.run((ImCompiletimeExpr)this, globalState, localState); } /** */ public de.peeeq.wurstscript.intermediatelang.ILconst evaluate(de.peeeq.wurstscript.intermediatelang.interpreter.ProgramState globalState, de.peeeq.wurstscript.intermediatelang.interpreter.LocalState localState) { return de.peeeq.wurstscript.intermediatelang.interpreter.EvaluateExpr.eval((ImCompiletimeExpr)this, globalState, localState); } // circular = null private int zzattr_evaluationResult_state = 0; private java.util.concurrent.atomic.AtomicReference zzattr_evaluationResult_cache; /** */ public java.util.concurrent.atomic.AtomicReference evaluationResult() { if (zzattr_evaluationResult_state == 0) { try { zzattr_evaluationResult_state = 1; zzattr_evaluationResult_cache = de.peeeq.wurstscript.intermediatelang.interpreter.EvaluateExpr.compiletimeEvaluationResult((ImCompiletimeExpr)this); } finally { zzattr_evaluationResult_state = 0; } zzattr_evaluationResult_state = 2; } else if (zzattr_evaluationResult_state == 1) { throw new CyclicDependencyError(this, "evaluationResult"); } return zzattr_evaluationResult_cache; } /** */ public de.peeeq.wurstscript.ast.Element attrTrace() { return de.peeeq.wurstscript.translation.imtojass.ImAttributes.getTrace((ImCompiletimeExpr)this); } /** */ public ImProg attrProg() { return de.peeeq.wurstscript.translation.imtojass.ImAttributes.getProg((ImCompiletimeExpr)this); } }