Skip to content

Commit 33bc604

Browse files
committed
C#: Update AST printing to include generated cast (wrapping) expressions and generated ToString calls.
1 parent 3754177 commit 33bc604

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

csharp/ql/lib/semmle/code/csharp/PrintAst.qll

+3-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@ private predicate shouldPrint(Element e, Location l) {
3232
}
3333

3434
private predicate isImplicitExpression(ControlFlowElement element) {
35-
element.(Expr).isImplicit() and
35+
// Include compiler generated cast expressions and `ToString` calls if
36+
// they wrap actual source expressions.
37+
element.(Expr).stripImplicit().isImplicit() and
3638
not element instanceof CastExpr and
3739
not element.(OperatorCall).getTarget() instanceof ImplicitConversionOperator and
3840
not element instanceof ElementInitializer

0 commit comments

Comments
 (0)