mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
8 lines
221 B
Plaintext
8 lines
221 B
Plaintext
import csharp
|
|
|
|
query predicate withExpressions(WithExpr with, string type, Expr expr, ObjectInitializer init) {
|
|
type = with.getType().toStringWithTypes() and
|
|
expr = with.getExpr() and
|
|
init = with.getInitializer()
|
|
}
|