Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion csharp/ql/lib/semmle/code/csharp/exprs/Expr.qll
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class Expr extends ControlFlowElement, @expr {
final AnnotatedType getAnnotatedType() { result.appliesTo(this) }

/** Gets the value of this expression, if any */
string getValue() { expr_value(this, result) }
string getValue() { expr_value(this.stripImplicit(), result) }

/** Gets the integer value of this expression, if any. */
cached
Expand Down
Loading