mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-05-27 19:08:39 +00:00
4 lines
88 B
JavaScript
4 lines
88 B
JavaScript
function foo() { var a=1; var b=2; bar(a, b); }
|
|
function bar(c, d) { debugger; }
|
|
foo();
|