about summary refs log tree commit diff stats
path: root/051test.subx
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-01-12 12:11:15 -0800
committerKartik Agaram <vc@akkartik.com>2020-01-12 14:49:35 -0800
commitf1eade728695ed3f52ae4e13f0a91dfe769e8567 (patch)
treed43079a8127487ecf9837600961f333e41ab7320 /051test.subx
parente064f1bbfdbd4386d752fbb750bf36d91dce413b (diff)
downloadmu-f1eade728695ed3f52ae4e13f0a91dfe769e8567.tar.gz
5883 - drop the `ref` keyword
When I created it I was conflating two things:
a) needing to refer to just the start, rather than the whole, and
b) counting indirections.

Both are kinda ill-posed. Now Mu will have just `addr` and `handle` types.
Normal types will translate implicitly to `addr` types, while `handle`
will always require explicit handling.
Diffstat (limited to '051test.subx')
-rw-r--r--051test.subx6
1 files changed, 3 insertions, 3 deletions
diff --git a/051test.subx b/051test.subx
index f5771010..e12ce509 100644
--- a/051test.subx
+++ b/051test.subx
@@ -80,7 +80,7 @@ $check-ints-equal:end:
 
 # length-prefixed string containing just a single newline
 # convenient to have when printing messages and so on
-Newline:  # (ref array byte)
+Newline:  # (array byte)
     # size : int
     1/imm32
     # data
@@ -91,14 +91,14 @@ Num-test-failures:  # int
     0/imm32
 
 # length-prefixed string containing just a single space
-Space:  # (ref array byte)
+Space:  # (array byte)
     # size : int
     1/imm32
     # data
     20/space
 
 # length-prefixed string containing just a single slash
-Slash:  # (ref array byte)
+Slash:  # (array byte)
     # size : int
     1/imm32
     # data