1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-05-27 13:28:54 +00:00
Files
UXP/devtools/client/debugger/test/mochitest/code_script-eval.js
T

15 lines
291 B
JavaScript

var bar;
function evalSource() {
eval("bar = function() {\nvar x = 5;\n}");
}
function evalSourceWithSourceURL() {
eval("bar = function() {\nvar x = 6;\n} //# sourceURL=bar.js");
}
function evalSourceWithDebugger() {
eval("bar = function() {\nvar x = 7;\ndebugger; }\n bar();");
}