Skip to content

Commit 0e27671

Browse files
committed
Readded comma between parameters (it disappeared on one of the merges).
1 parent 1878123 commit 0e27671

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pls.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -478,12 +478,12 @@ def p_params_rev(t):
478478

479479

480480
def p_params_snd(t):
481-
'''snd_params : snd_params snd_params
481+
'''snd_params : snd_params COMMA snd_params
482482
| value
483483
| '''
484484
if len(t) == 1: t[0] = ""
485485
elif len(t) == 2: t[0] = t[1]
486-
else: t[0] = "%s, %s"%(t[1],t[2])
486+
else: t[0] = "%s, %s"%(t[1],t[3])
487487

488488
def p_return(t):
489489
'statement : RETURN value'
@@ -734,7 +734,7 @@ def get_indexed_array_type(x):
734734

735735

736736

737-
print "package com.pipelinescript;"
737+
#print "package com.pipelinescript;"
738738
print header
739739
print "public class Pipeline\n{"
740740
print functions

0 commit comments

Comments
 (0)