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