public Operand buildWhile(final WhileNode whileNode, IRScope s) {
return buildConditionalLoop(s, whileNode.getConditionNode(), whileNode.getBodyNode(), true, whileNode.evaluateAtStart());
}
public Operand buildXStr(XStrNode node, IRScope s) {
return copyAndReturnValue(s, new BacktickString(new StringLiteral(node.getValue())));
}