aboutsummaryrefslogtreecommitdiff
path: root/frontend/Heap.dcl
diff options
context:
space:
mode:
authormartinw2000-09-20 14:16:35 +0000
committermartinw2000-09-20 14:16:35 +0000
commitcb7ed1d9cf08be2f2144210efe155338a4f8a687 (patch)
tree855a6c39bc555d47759d084b7cebaa1646657f58 /frontend/Heap.dcl
parentimproving error messages: (diff)
changed signature of readPtr from "unique" into "possibly unique"
git-svn-id: https://svn.cs.ru.nl/repos/clean-compiler/trunk@219 1f8540f1-abd5-4d5b-9d24-4c5ce8603e2d
Diffstat (limited to 'frontend/Heap.dcl')
-rw-r--r--frontend/Heap.dcl2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/Heap.dcl b/frontend/Heap.dcl
index c23381b..a0bb2cb 100644
--- a/frontend/Heap.dcl
+++ b/frontend/Heap.dcl
@@ -15,7 +15,7 @@ isNilPtr :: !(Ptr v) -> Bool
newPtr :: !v !*(Heap v) -> (!.Ptr v,!.Heap v)
-readPtr :: !(Ptr v) !*(Heap v) -> (!v,!.Heap v)
+readPtr :: !(Ptr v) !u:(Heap v) -> (!v,!u:Heap v)
writePtr :: !(Ptr v) !v !*(Heap v) -> .Heap v