| 7749 | |
| 7750 | |
| 7751 | bool Script::IsLabelTarget(Line *aLine) |
| 7752 | { |
| 7753 | Label *lbl = g->CurrentFunc ? g->CurrentFunc->mFirstLabel : mFirstLabel; |
| 7754 | for ( ; lbl && lbl->mJumpToLine != aLine; lbl = lbl->mNextLabel); |
| 7755 | return lbl; |
| 7756 | } |
| 7757 | |
| 7758 | |
| 7759 |
nothing calls this directly
no outgoing calls
no test coverage detected