whileLoop.js 135 B

123456789
  1. define(["esprima"], function (esprima) {
  2. return esprima.parse(
  3. "x = 10;\n" +
  4. "while (x > 0) { x--; }"
  5. );
  6. });