summaryrefslogtreecommitdiff
path: root/Source/Dafny/Compiler.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Dafny/Compiler.cs')
-rw-r--r--Source/Dafny/Compiler.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Dafny/Compiler.cs b/Source/Dafny/Compiler.cs
index 502f7f8a..60ee42f7 100644
--- a/Source/Dafny/Compiler.cs
+++ b/Source/Dafny/Compiler.cs
@@ -1976,7 +1976,7 @@ namespace Microsoft.Dafny {
if (sf != null) {
wr.Write(sf.PreString);
TrParenExpr(e.Obj);
- wr.Write(".{0}", sf.CompiledName);
+ wr.Write(".@{0}", sf.CompiledName);
wr.Write(sf.PostString);
} else {
TrParenExpr(e.Obj);
@@ -2307,7 +2307,7 @@ namespace Microsoft.Dafny {
} else if (callString != null) {
wr.Write(preOpString);
TrParenExpr(e.E0);
- wr.Write(".{0}(", callString);
+ wr.Write(".@{0}(", callString);
TrExpr(e.E1);
wr.Write(")");
}