mirror of
https://github.com/github/codeql.git
synced 2026-03-04 22:56:47 +01:00
8 lines
182 B
Plaintext
8 lines
182 B
Plaintext
import csharp
|
|
|
|
from Method m, Parameter p, Expr default
|
|
where p = m.getAParameter()
|
|
and default = p.getDefaultValue()
|
|
and m.fromSource()
|
|
select p, default, m.toStringWithTypes()
|