1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-05-26 23:18:26 +00:00
Files
UXP/devtools/client/debugger/test/mochitest/code_ugly-8
T

4 lines
88 B
Plaintext

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