summaryrefslogtreecommitdiff
path: root/Source/Core/Absy.cs
diff options
context:
space:
mode:
authorGravatar Valentin Wüstholz <wuestholz@gmail.com>2015-06-12 08:28:07 +0200
committerGravatar Valentin Wüstholz <wuestholz@gmail.com>2015-06-12 08:28:52 +0200
commit2920db784b61f02b6d68e249bc3b1c6d1cf26efd (patch)
tree5d145b7a16625e2638b2c813a5c4b3b716715d65 /Source/Core/Absy.cs
parent0658816bbe2ea4be8785b52958a65b55c6a845a5 (diff)
Fix issue with computation of statement checksums for lambda expressions.
Diffstat (limited to 'Source/Core/Absy.cs')
-rw-r--r--Source/Core/Absy.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/Core/Absy.cs b/Source/Core/Absy.cs
index 56bfc90f..0fedcd44 100644
--- a/Source/Core/Absy.cs
+++ b/Source/Core/Absy.cs
@@ -2630,6 +2630,8 @@ namespace Microsoft.Boogie {
private bool neverTrigger;
private bool neverTriggerComputed;
+ public string OriginalLambdaExprAsString;
+
public Function(IToken tok, string name, List<Variable> args, Variable result)
: this(tok, name, new List<TypeVariable>(), args, result, null) {
Contract.Requires(result != null);