in reply to Re^3: Where to place POD
in thread Where to place POD
a developer picks up a bug report, analyses it to the point they see a method call somewhere clearly expecting some behaviour, and sees in the method that it does not implement that behaviour. They then make an assumption (effectively a guess) about whether it's the call or the implementation that is wrong
In my experience, it usually means they're both wrong. :-)
Pop quiz: what would you do if you stumbled upon these two code snippets while making an unrelated bug fix?
Case 1:
# Add one to $i $i = $i + 1;
Case 2:
# Add one to $i $i = $i - 1;
👁️🍾👍🦟
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^5: Where to place POD
by talexb (Chancellor) on Jan 16, 2024 at 15:20 UTC | |
Re^5: Where to place POD
by afoken (Chancellor) on Jan 16, 2024 at 12:50 UTC | |
Re^5: Where to place POD
by Bod (Parson) on Jan 17, 2024 at 00:18 UTC | |
Re^5: Where to place POD
by Polyglot (Chaplain) on Jan 16, 2024 at 04:19 UTC | |
by eyepopslikeamosquito (Archbishop) on Jan 16, 2024 at 05:45 UTC | |
by Polyglot (Chaplain) on Jan 16, 2024 at 06:05 UTC |