mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
18 lines
497 B
Plaintext
18 lines
497 B
Plaintext
/**
|
|
* @id cs/examples/switch-case
|
|
* @name Switch statement case missing
|
|
* @description Finds switch statements with a missing enum constant case and no default case.
|
|
* @tags switch
|
|
* case
|
|
* enum
|
|
*/
|
|
|
|
import csharp
|
|
|
|
from SwitchStmt switch, Enum enum, EnumConstant missing
|
|
where switch.getCondition().getType() = enum
|
|
and missing.getDeclaringType() = enum
|
|
and not switch.getAConstCase().getExpr() = missing.getAnAccess()
|
|
and not exists(switch.getDefaultCase())
|
|
select switch
|