aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/data/format/binary.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/library/lux/data/format/binary.lux')
-rw-r--r--stdlib/source/library/lux/data/format/binary.lux47
1 files changed, 23 insertions, 24 deletions
diff --git a/stdlib/source/library/lux/data/format/binary.lux b/stdlib/source/library/lux/data/format/binary.lux
index 0fcc94723..8905c32bf 100644
--- a/stdlib/source/library/lux/data/format/binary.lux
+++ b/stdlib/source/library/lux/data/format/binary.lux
@@ -94,8 +94,8 @@
try.trusted
[(.++ offset)]
caseT))])])
- ([0 #.Left left]
- [1 #.Right right])
+ ([0 .#Left left]
+ [1 .#Right right])
)))
(def: .public (and pre post)
@@ -242,17 +242,17 @@
try.trusted
[(.++ offset)]
caseT))])])
- ([0 #.Primitive (..and ..text (..list recur))]
- [1 #.Sum pair]
- [2 #.Product pair]
- [3 #.Function pair]
- [4 #.Parameter indexed]
- [5 #.Var indexed]
- [6 #.Ex indexed]
- [7 #.UnivQ quantified]
- [8 #.ExQ quantified]
- [9 #.Apply pair]
- [10 #.Named (..and ..name recur)])
+ ([0 .#Primitive (..and ..text (..list recur))]
+ [1 .#Sum pair]
+ [2 .#Product pair]
+ [3 .#Function pair]
+ [4 .#Parameter indexed]
+ [5 .#Var indexed]
+ [6 .#Ex indexed]
+ [7 .#UnivQ quantified]
+ [8 .#ExQ quantified]
+ [9 .#Apply pair]
+ [10 .#Named (..and ..name recur)])
))))))
(def: .public location
@@ -277,15 +277,14 @@
try.trusted
[(.++ offset)]
caseT))])])
- ([00 #.Bit ..bit]
- [01 #.Nat ..nat]
- [02 #.Int ..int]
- [03 #.Rev ..rev]
- [04 #.Frac ..frac]
- [05 #.Text ..text]
- [06 #.Identifier ..name]
- [07 #.Tag ..name]
- [08 #.Form sequence]
- [09 #.Variant sequence]
- [10 #.Tuple sequence])
+ ([0 .#Bit ..bit]
+ [1 .#Nat ..nat]
+ [2 .#Int ..int]
+ [3 .#Rev ..rev]
+ [4 .#Frac ..frac]
+ [5 .#Text ..text]
+ [6 .#Identifier ..name]
+ [7 .#Form sequence]
+ [8 .#Variant sequence]
+ [9 .#Tuple sequence])
)))))))