michael@0: // -*- mode: js2 -*- michael@0: // Line numbers in this file are checked in Debugger-findScripts-11.js. michael@0: michael@0: // line 3 michael@0: michael@0: var x = ""; michael@0: function f() { michael@0: x += "the map"; // line 8 michael@0: return function g() { michael@0: return "to me what you have stolen"; // line 10 michael@0: }; michael@0: } michael@0: michael@0: function h(x, y) { michael@0: if (x == 0) return y+1; // line 15 michael@0: if (y == 0) return h(x-1, 1); michael@0: return h(x-1, h(x, y-1)); michael@0: }