Comment #2 on issue 4259 by [email protected]: DCHECK failure: scope_info_->StackSlotIndex(*name_handle) < 0 || is_block_scope()
https://code.google.com/p/v8/issues/detail?id=4259

My intuition is that this DCHECK is simply incorrect in the face of stack-allocated lexical variables. The is_block_scope() check is meant to catch this case, but it's testing the wrong scope, since |this| is a DeclarationScope (which by definition is not a block scope) if some inner block scope has allocated its lexical variables here.

I should be able to put together a simple repro to demonstrate the above, but if my intuition above is correct, this is nothing to worry about.

--
You received this message because this project is configured to send all issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to