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