summaryrefslogtreecommitdiff
path: root/sci2jsyacc.py
diff options
context:
space:
mode:
Diffstat (limited to 'sci2jsyacc.py')
-rwxr-xr-xsci2jsyacc.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/sci2jsyacc.py b/sci2jsyacc.py
index 59f0b3c2..d033b959 100755
--- a/sci2jsyacc.py
+++ b/sci2jsyacc.py
@@ -475,6 +475,11 @@ def p_term_full_slice(p):
'term : termvar OPENBRACKET COLON CLOSEBRACKET'
p[0] = p[1] + '.slice()'
+# B(:,1)
+def p_term_full_slice_expression(p):
+ 'term : termvar OPENBRACKET COLON COMMA expression CLOSEBRACKET'
+ p[0] = p[1] + '.slice()[' + str(p[5]) + '-1]'
+
# B($-2)
# C('function parameter')
def p_term_index(p):