blob: 0d84c25372335f47a44c3688b499f756a8bf4d3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
var lfcode = new Array();
lfcode.push("\
test();\
function test() {\
function removeAllProperties(o) {\
bar() = thaw, patterns;\
}\
var o = {};\
o.first = { toSource: function() { removeAllProperties(o); } };\
return o.toSource();\
}\
");
lfcode.push("test();");
gczeal(4);
while (true) {
var file = lfcode.shift(); if (file == undefined) { break; }
loadFile(file);
}
function loadFile(lfVarx) {
try {
evaluate(lfVarx);
} catch (lfVare) { }
}
|