We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3754177 commit 33bc604Copy full SHA for 33bc604
csharp/ql/lib/semmle/code/csharp/PrintAst.qll
@@ -32,7 +32,9 @@ private predicate shouldPrint(Element e, Location l) {
32
}
33
34
private predicate isImplicitExpression(ControlFlowElement element) {
35
- element.(Expr).isImplicit() and
+ // Include compiler generated cast expressions and `ToString` calls if
36
+ // they wrap actual source expressions.
37
+ element.(Expr).stripImplicit().isImplicit() and
38
not element instanceof CastExpr and
39
not element.(OperatorCall).getTarget() instanceof ImplicitConversionOperator and
40
not element instanceof ElementInitializer
0 commit comments