Skip to content

Commit 00753a1

Browse files
committed
C#: Address review comments.
1 parent d9fb137 commit 00753a1

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

csharp/ql/test/library-tests/stringinterpolation/stringInterpolation.ql

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
import csharp
22

3-
query predicate inserts(InterpolatedStringExpr expr, Expr e) {
4-
expr.getAnInsert() = e // and inSpecificSource(expr)
5-
}
3+
query predicate inserts(InterpolatedStringExpr expr, Expr e) { expr.getAnInsert() = e }
64

75
query predicate texts(InterpolatedStringExpr expr, StringLiteral literal) {
8-
expr.getAText() = literal // and inSpecificSource(expr)
6+
expr.getAText() = literal
97
}
108

119
query predicate interpolationInsertsWithAlign(InterpolatedStringExpr expr, Expr insert, Expr align) {

0 commit comments

Comments
 (0)