vote up 10 vote down star
1

I just got the following error in a piece of javascript (in Firefox 3.5, with Firebug running)

cannot access optimized closure

I know, superficially, what caused the error. I had a line

options.length()

instead of

options.length

Fixing this bug, made the message go away. But I'm curious. What does this mean? What is an optimized closure? Is optimizing an enclosure something that the javascript interpretter does automatically? What does it do?

flag

51% accept rate
1  
What is 'options'? an Array? – rodrigoap Jul 20 at 15:52
1  
Related discussion on mozilla.dev.platform from five days ago (07/15): groups.google.com/group/mozilla.dev.platform/… - Unfortunately, it provides not much of an answer, I'm just cross-linking – Tomalak Jul 20 at 16:05

6 Answers

vote up 0 vote down

This also happened to me today. Firebug error'd at line 2 of this function:

function IsValidDate(objName) {
  re = new RegExp('^( +|today|pdate|- *\\d+ *(day(s|)|week(s|))+ *$', 'i');
  if (re.test(objName.value)) return 2;
  return (chkdate(objName));
}

When I added "var " before the declaration of "re" in line 1, the error went away.

link|flag
vote up 0 vote down

It is a bug in Firefox happening with Firebug open:

https://bugzilla.mozilla.org/show_bug.cgi?id=505001

[An earlier answer mentioned this was due to this other bug, which I think is incorrect as that other problem was not related to Firebug.]

link|flag
vote up 0 vote down

I encountered the same error today. In my case this occurred because I was referencing an object's attribute or function that did not exist or was not available. I'm guessing that since the object was available via a closure that was optimized, firebug could not access metadata on that object and thus the cryptic error message.

link|flag
vote up 2 vote down

I had this issue too when Firebug is running.

It seems to happen sometimes, when an exception is raised (for whatever reason) and when there's a recursive function call somewhere in the call stack. The exception gets re-raised as the mysterious "InternalError: cannot access optimized closure"

Changing the way I define the recursive function, seems to make this issue go away. eg changing from

function foo(bar) {... foo(recursively); ...}

to

var foo = function(bar) {... foo(recursively); ...}

Hope that helps.

link|flag
I had this problem with a recursive function, and this fixed it for me! Thanks! – Skilldrick Oct 11 at 1:43
Cheers. As it happens it turned out that whether the function is called recursively or not doesn't make a difference, it was just declaring it in this way nested within another function which caused the problem. – Matthew Nov 11 at 15:46
vote up 0 vote down

A closure is a function with context. If you dynamically create a new function, then you create a closure.

function makeAdder(int num) {
    return function(int num2) { return num + num2; }
}

adder = makeAdder(5);
adder(7) // returns (5+7) = 12
adder(2) // returns (5+2) = 7

Here, the closure is the inner function, as returned by makeAdder, along with the '5' that was passed.

The javascript engine might choose to optimize away the function shown above, to make things run faster, never generating or running that code, so it can't be debugged or referenced. Optimizers are supposed to be very careful to ensure there's no impact, so I'd guess this one made a mistake.

link|flag
You probably meant - return function(){ ... }, not return new function(){ ... } (as the latter one will actually instantiate a new object using function as constructor). Also, a function does not need to be created "dynamically" to create a closure; any function expression or function declaration closes over free variables in its scope chain (except functions created via Function, which are set up to contain only global scope in their scope chain). – kangax Aug 22 at 3:48
vote up 2 vote down

Seems like a Firefox bug: https://bugzilla.mozilla.org/show_bug.cgi?id=496790

link|flag
2  
I'm getting this message in Firefox, but Chrome halts at the same point in the code. – Killroy Aug 8 at 10:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.