- From: <bugzilla@jessica.w3.org>
- Date: Wed, 29 Jan 2014 17:06:17 +0000
- To: public-webapps-bugzilla@w3.org
https://www.w3.org/Bugs/Public/show_bug.cgi?id=24403
--- Comment #7 from Bobby Holley (:bholley) <bobbyholley@gmail.com> ---
Ok, I think I remember what I was getting at in comment 4 when I was referring
to implicit Function conversion.
IIUC, callers can equivalently do:
foo.addEventListener("evt", func);
and
foo.addEventListener("evt", {handleEvent: func});
My understanding was that the bindings were supposed to implicitly box the
former into the latter. If that happens, where does the box get created? The
options I can think of are:
* The scope of |foo|
* The scope of |func|
* The scope of the caller
Depending on what the answer there is, we get a different entry point.
-- 
You are receiving this mail because:
You are the QA Contact for the bug.
Received on Wednesday, 29 January 2014 17:06:19 UTC