mirror of
https://github.com/github/codeql.git
synced 2026-02-28 12:53:49 +01:00
10 lines
154 B
Plaintext
10 lines
154 B
Plaintext
/**
|
|
* @name Test for whiles
|
|
*/
|
|
import csharp
|
|
|
|
from Method m, WhileStmt s
|
|
where m.getName() = "MainWhile"
|
|
and s.getEnclosingCallable() = m
|
|
select m, s
|