mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-15 08:53:07 +09:00
3 lines
88 B
JavaScript
3 lines
88 B
JavaScript
function foo() { var a=1; var b=2; bar(a, b); }
|
|
function bar(c, d) { debugger; }
|
|
foo();
|