Tagged Questions
The fall-through tag has no wiki summary.
5
votes
5answers
338 views
Is it possible to use || in PHP switch?
switch ($foo)
{
case 3 || 5:
bar();
break;
case 2:
apple();
break;
}
In the above code, is the first switch statement valid? I want it ...
3
votes
3answers
114 views
Why not force explicit fall-through rather than explicit break for switch statements?
This is not specifically a C# question but it is the C# version of switch that makes me ask the question.
Why do I have to explicitly state that I do not want to fall through from one case statement ...
0
votes
1answer
100 views
Command fall through in lex
I'm using lex in my program and I've run into a problem I need some help with.
My program accepts its input in the form of [something " something]. This is working correctly.
However, I also need to ...
-1
votes
1answer
154 views
Internet explorer 8 event fall through transparent parents
When you have a transparent div and you generate a click on in (for example) the click falls right through to elemets below. This behavior does not exists in other modern browsers and I am sure is out ...