mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
14 lines
246 B
Plaintext
14 lines
246 B
Plaintext
/**
|
|
* @id cs/examples/singleton-block
|
|
* @name Singleton blocks
|
|
* @description Finds block statements containing a single statement.
|
|
* @tags block
|
|
* statement
|
|
*/
|
|
|
|
import csharp
|
|
|
|
from BlockStmt b
|
|
where b.getNumberOfStmts() = 1
|
|
select b
|