about summary refs log tree commit diff stats
path: root/051test.subx
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2019-12-08 13:56:46 -0800
committerKartik Agaram <vc@akkartik.com>2019-12-08 23:31:05 -0800
commit2a2a5b1e43b6aa650a41ab1ec68d9778c14cb649 (patch)
tree734619639755cf5b95490bdc4362bbef0a504881 /051test.subx
parenta93cd189c95fc82a8f1db4e42e5f278bc642bb0c (diff)
downloadmu-2a2a5b1e43b6aa650a41ab1ec68d9778c14cb649.tar.gz
5804
Try to make the comments consistent with the type system we'll eventually
have.
Diffstat (limited to '051test.subx')
-rw-r--r--051test.subx14
1 files changed, 7 insertions, 7 deletions
diff --git a/051test.subx b/051test.subx
index 846e6cee..ac0f32a5 100644
--- a/051test.subx
+++ b/051test.subx
@@ -80,26 +80,26 @@ $check-ints-equal:end:
 
 # length-prefixed string containing just a single newline
 # convenient to have when printing messages and so on
-Newline:
-    # size
+Newline:  # (ref array byte)
+    # size : int
     1/imm32
     # data
     0a/newline
 
 # every test failure increments this counter
-Num-test-failures:
+Num-test-failures:  # int
     0/imm32
 
 # length-prefixed string containing just a single space
-Space:
-    # size
+Space:  # (ref array byte)
+    # size : int
     1/imm32
     # data
     20/space
 
 # length-prefixed string containing just a single slash
-Slash:
-    # size
+Slash:  # (ref array byte)
+    # size : int
     1/imm32
     # data
     2f/slash