Here is something weird, and I don't know how to overcome it.
Basically, I have this string here:
var s = 'var Bla = {variable: true, get: function() { return this.variable;}}; return Bla;'
and using the Function constructor to parse this construct.
var fn = new Function(s);
It works great, except that the inside function 'get' is no longer there .. like it didn't got parsed?!
fn().variable -> is there and returns "true".
fn().get -> is undefined, not existing.
Any ideas?
PS: I edited my original question to indicate what's really missing.
