Source code

Revision control

Copy as Markdown

Other Tools

// Script for Debugger-findScripts-12.js to load.
// Line numbers in this script are cited in the test.
function f() {
// line 5
function ff() {
return "my wuv, I want you always beside me"; // line 7
};
ff.global = this;
return ff;
};
function g() {
return "to Oz"; // line 14
}
f.global = this;
g.global = this;