Hello P,

>Scope chain (f): [
>  global,
>  {foo: undefined, bar: undefined},
>  {foo: 20, test: function () {...}},
>  {activation object of 'f' context}
>]

Sorry, scope chain of 'f' context sure will *not* contain object added by the
'with' statement (my typo), scope chain above was described for 'test' context. 
And for
'f' is:

Scope chain (f): [
  global,
  {foo: undefined, bar: 21},
  {activation object of 'f' context}
]

/ds

_______________________________________________
es-discuss mailing list
[email protected]
https://mail.mozilla.org/listinfo/es-discuss

Reply via email to