code_ugly.js 88 B

1234
  1. function foo() { var a=1; var b=2; bar(a, b); }
  2. function bar(c, d) { debugger; }
  3. foo();