Displaying 1 result from an estimated 1 matches for "assdofjkaofjojsafjpojsafa".
2007 Aug 21
0
2 commits - test/trace
...function new_empty_object () {
var hash = new Object ();
+ ASSetPropFlags (hash, null, 0, 7);
for (var prop in hash) {
delete hash[prop];
}
return hash;
}
+#if __SWF_VERSION__ >= 6
function hasOwnProperty (o, prop)
{
- if (o.__proto__ == undefined || o.__proto__ == "assdofjkaofjojsafjpojsafa")
+ if (o.hasOwnProperty != undefined)
+ return o.hasOwnProperty (prop);
+
+ o.hasOwnProperty = Object.prototype.hasOwnProperty;
+ result = o.hasOwnProperty (prop);
+ delete o.hasOwnProperty;
+ return result;
+}
+#else
+// this gets the same result as the above, with following limitati...