Sun Feb 08, 2009 11:35 am |
Replies: 9 |
Views: 3780 |
|
 |
function B() { // does not handle "SpecialException" generated by A
A("foo", "foo", "foo");
}
function C() {
tr ...
|
Sun Feb 08, 2009 9:24 am |
Replies: 9 |
Views: 3780 |
|
 |
You are still true about 'your case' that implies dynamic object generation, but if 'my case' would be covered, I'd already be pretty happy. Meaning, that all instances of code that's explicitly calli ...
|
Sun Feb 08, 2009 8:32 am |
Replies: 9 |
Views: 3780 |
|
 |
function A($cls, $mth, $arg) {
$a = new $cls;
$a->$mth($arg);
}
Well, but if it looked like this:
function A($cls, $mth, $arg) {
if($cls = ...
|
Sun Feb 08, 2009 7:45 am |
Replies: 9 |
Views: 3780 |
|
 |
It's obvious that use cases for automated testing should be applied in order to find all exceptions, but proper IDEs do this on a code analysis level too. I assume PHPED can't do this? If so, is it pl ...
|
Sun Feb 08, 2009 7:18 am |
Replies: 9 |
Views: 3780 |
|
 |
Hi,
is there a way to find uncaught exceptions globally/per method?
Thanks,
Ingmar
|