var invoke_real =
{
real: function(fn)
{
this.test = 'sss';
fn(this);
this.f();
}
};
var tester_real = function(ctx){ctx.f = function() {alert(this.test);};};
invoke_real.real(tester_real);