mirror of
https://github.com/github/codeql.git
synced 2026-06-17 02:41:08 +02: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()
|