mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
18 lines
374 B
Plaintext
18 lines
374 B
Plaintext
/**
|
|
* @name Test for properties
|
|
*/
|
|
|
|
import csharp
|
|
|
|
from Property p, Field f
|
|
where
|
|
p.hasName("Caption") and
|
|
p.isReadWrite() and
|
|
p.isPublic() and
|
|
f.isPrivate() and
|
|
f.getType() instanceof StringType and
|
|
p.getType() = f.getType() and
|
|
p.getDeclaringType() = f.getDeclaringType() and
|
|
p.getGetter().getStatementBody().getStmt(0) instanceof ReturnStmt
|
|
select p, f
|