Skip to content

Commit

Permalink
Add mention of Reference relating to receiver binding.
Browse files Browse the repository at this point in the history
  • Loading branch information
rbuckton committed Jul 17, 2018
1 parent 143611e commit f524abe
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,9 @@ const g = (_0, _1) => $$temp0($$temp1, _0, $$temp2, _1);
```
In addition to fixing the function to be called and its explicit arguments, we also fix any
supplied _receiver_ as part of the resulting function. As such, `o.f(?)` will maintain `o` as the
`this` receiver when calling `o.f`. This can be illustrated by the following syntactic conversion:
supplied _receiver_ as part of the resulting function, as we will store the Reference in the
resulting function. As such, `o.f(?)` will maintain `o` as the `this` receiver when calling `o.f`.
This can be illustrated by the following syntactic conversion:
```js
const g = o.f(?, 1);
Expand Down

0 comments on commit f524abe

Please sign in to comment.