Files
codeql/csharp/ql/test/library-tests/statements/Continue1.ql
2018-12-20 10:19:59 +01:00

13 lines
209 B
Plaintext

/**
* @name Test for continues
*/
import csharp
from Method m, ContinueStmt s
where
m.getName() = "MainContinue" and
s.getEnclosingCallable() = m and
s.getParent().(IfStmt).getThen() = s
select m, s