Методом тыка родил вот такой код, вобщем сделал через замыкание, оцените профи сгодится ли такая конструкция?
function Parent () {
  this.child = {
    self : this,
    name : 'child',
    fnChild : function () {
      this.self.fnParent.call(this);
    }
  };
  this.name = 'parent';
  this.fnParent = function () {
    alert(this.name); 
  };
}