tracerlocations.js 111 B

123456789
  1. // For JS Tracer tests dealing with source locations.
  2. function foo(x) {
  3. x += 6;
  4. return "bar";
  5. }
  6. foo(42);