mirror of
https://github.com/github/codeql.git
synced 2026-03-05 07:06:47 +01:00
7 lines
227 B
Plaintext
7 lines
227 B
Plaintext
import csharp
|
|
|
|
from LocalVariableAccess a, string access
|
|
where a.getEnclosingCallable().getDeclaringType().hasName("OutVariables")
|
|
and if a instanceof LocalVariableRead then access="read" else access="write"
|
|
select a, access
|