The MemberExpression is john.greet
. Basically what it's saying is: Step 1: Figure out what function to call. :-) The john
part is important, because it comes into it later.
Here's the complete quote from the most recent specification (your link is to the 3rd edition, which has been superceded by the 5th edition; this didn't change much though):
- Let ref be the result of evaluating MemberExpression.
- Let func be GetValue(ref).
- Let argList be the result of evaluating Arguments, producing an internal list of argument values (see 11.2.4).
- If Type(func) is not Object, throw a TypeError exception.
- If IsCallable(func) is false, throw a TypeError exception.
- If Type(ref) is Reference, then
a. If IsPropertyReference(ref) is true, then
i. Let thisValue be GetBase(ref).
b. Else, the base of ref is an Environment Record
i. Let thisValue be the result of calling the ImplicitThisValue concrete method of GetBase(ref).
- Else, Type(ref) is not Reference.
a. Let thisValue be undefined.
- Return the result of calling the [[Call]] internal method on func, providing thisValue as the this value and providing the list argList as the argument values.
As you can see, john
comes into it again at 6(a) because the expression is a property reference, so the this
value is john
(rather than the global object, as it would be if you called this not through a property reference).
If you're reading the spec, I do recommend reading the newest one instead of the older one (no HTML version yet). I'm afraid the prose is no less turgid, though. :-)