1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-05-27 07:28:35 +00:00
Files
UXP/devtools/client/debugger/test/mochitest/code_same-line-functions.js
T

2 lines
88 B
JavaScript

function first() { var a = "first"; second(); function second() { var a = "second"; } }