about summary refs log tree commit diff stats
path: root/051test.subx
diff options
context:
space:
mode:
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