summaryrefslogtreecommitdiff
path: root/Source/Core/AbsyExpr.cs
diff options
context:
space:
mode:
authorGravatar Unknown <leino@LEINO6.redmond.corp.microsoft.com>2013-01-07 19:41:58 -0800
committerGravatar Unknown <leino@LEINO6.redmond.corp.microsoft.com>2013-01-07 19:41:58 -0800
commit2219ef06a1e87125273a9fa2dc24b92a388ec4de (patch)
tree7fcdff5bfccd8671e045af5e722fdb0a854b6012 /Source/Core/AbsyExpr.cs
parent4e5d28feec671e5e2493f9ecc89fc5e14018d017 (diff)
Allow attributes on procedure formals, function formals, and bound variables
Diffstat (limited to 'Source/Core/AbsyExpr.cs')
-rw-r--r--Source/Core/AbsyExpr.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/AbsyExpr.cs b/Source/Core/AbsyExpr.cs
index f8e64402..14534929 100644
--- a/Source/Core/AbsyExpr.cs
+++ b/Source/Core/AbsyExpr.cs
@@ -2583,7 +2583,7 @@ namespace Microsoft.Boogie {
if (this.LocVars.Length > 0) {
stream.Write(level + 1, "var ");
- this.LocVars.Emit(stream);
+ this.LocVars.Emit(stream, true);
stream.WriteLine(";");
}