Files
codeql/csharp/ql/test/library-tests/statements/Switch2.ql
2018-08-02 17:53:23 +01:00

9 lines
182 B
Plaintext

/**
* @name Test for switch cases
*/
import csharp
from Method m, SwitchStmt s
where s.getEnclosingCallable() = m
select m, s.getAConstCase() as c, c.getLocation().getStartLine()