summaryrefslogtreecommitdiff
path: root/Source/Core/AbsyQuant.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/AbsyQuant.cs
parent4e5d28feec671e5e2493f9ecc89fc5e14018d017 (diff)
Allow attributes on procedure formals, function formals, and bound variables
Diffstat (limited to 'Source/Core/AbsyQuant.cs')
-rw-r--r--Source/Core/AbsyQuant.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/AbsyQuant.cs b/Source/Core/AbsyQuant.cs
index 2a9f8414..92f255f3 100644
--- a/Source/Core/AbsyQuant.cs
+++ b/Source/Core/AbsyQuant.cs
@@ -116,7 +116,7 @@ namespace Microsoft.Boogie {
this.EmitTypeHint(stream);
Type.EmitOptionalTypeParams(stream, TypeParameters);
stream.Write(this, " ");
- this.Dummies.Emit(stream);
+ this.Dummies.Emit(stream, true);
stream.Write(" :: ");
for (QKeyValue kv = this.Attributes; kv != null; kv = kv.Next) {
kv.Emit(stream);