We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b0866b3 + 2e137d4 commit 6623a1cCopy full SHA for 6623a1c
tests/functional/dim_test0.bas
@@ -0,0 +1,6 @@
1
+
2
+DIM a AT @c(1, 5)
3
+DIM c(10, 10) as UBYTE
4
5
+const q = @c(2, 3)
6
zxbparser.py
@@ -622,6 +622,9 @@ def p_var_decl_at(p):
622
"""
623
p[0] = None
624
625
+ if p[2] is None or p[3] is None or p[5] is None:
626
+ return
627
628
if len(p[2]) != 1:
629
syntax_error(p.lineno(1),
630
'Only one variable at a time can be declared this way')
0 commit comments