Method:
a = {
  foo: 1,
  bar() {
    return this.foo + 1
  },
  lol: {
    baz() {
      return this.foo
    }
  }
}
a.bar() this which refers to a which is what I want. I'm looking for a way for the child method inside a.lol.baz to also have this refer to a. Is there anyway to do it?