mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
- Async streams (test only) - Unmanaged generic structs (extractor support) - Alternate interpolated strings (test only) - static local function (test only)
10 lines
234 B
Plaintext
10 lines
234 B
Plaintext
import csharp
|
|
|
|
query predicate inserts(InterpolatedStringExpr expr, int i, Expr insert) {
|
|
insert = expr.getInsert(i)
|
|
}
|
|
|
|
query predicate text(InterpolatedStringExpr expr, int i, StringLiteral literal) {
|
|
literal = expr.getText(i)
|
|
}
|