tenfourfox/devtools/client/debugger/test/mochitest/code_script-eval.js
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

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();');
}