/** Throws an exception (NOT SUPPORTED YET) */ public JExpression analyse(CExpressionContext context) throws PositionedError { at.dms.util.Utils.fail("Analysis of SIR nodes not supported yet."); return this; }
/** Generates a sequence of bytescodes - NOT SUPPORTED YET. */ public void genCode(CodeSequence code) { at.dms.util.Utils.fail("Codegen of SIR nodes not supported yet."); }
/* * Generates JVM bytecode to evaluate this expression. NOT SUPPORTED YET. * * @param code the bytecode sequence * @param discardValue discard the result of the evaluation ? */ public void genCode(CodeSequence code, boolean discardValue) { at.dms.util.Utils.fail("Codegen of SIR nodes not supported yet."); }
/** Analyses the statement (semantically) - NOT SUPPORTED YET. */ public void analyse(CBodyContext context) throws PositionedError { at.dms.util.Utils.fail("Analysis of SIR nodes not supported yet."); }