MCPcopy Create free account
hub / github.com/AutoHotkey/AutoHotkey / IsLabelTarget

Method IsLabelTarget

source/script.cpp:7751–7756  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7749
7750
7751bool 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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected