util/util.js has the following
export function evaluateStringLiteral(token) {
// TODO(arv): I feel dirty using eval here. We should just do the right
// thing!
return eval(token.value);
}
LiteralToken has a similar TODO:
* TODO: A way to get the processed value, rather than the raw value.
Original issue reported on code.google.com by arv@chromium.org on 17 Oct 2012 at 5:45
Original issue reported on code.google.com by
arv@chromium.org
on 17 Oct 2012 at 5:45