mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-16 01:13:08 +09:00
14 lines
291 B
JavaScript
14 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();");
|
|
}
|