function foo(){ var someVar, someOtherVar, evenSomeOtherVar;
if(true) { someVar=''; someOtherVar=''; //after this line I expect to jump to the next closing braces }//expected jump else { evenSomeOtherVar=''; evenSomeOtherVar=''; //but instead debugger highlights this line which happens to be the line immediately before the next closing brace }};//expected jump
Event.observe(window, 'load', foo);