We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1878123 commit 0e27671Copy full SHA for 0e27671
pls.py
@@ -478,12 +478,12 @@ def p_params_rev(t):
478
479
480
def p_params_snd(t):
481
- '''snd_params : snd_params snd_params
+ '''snd_params : snd_params COMMA snd_params
482
| value
483
| '''
484
if len(t) == 1: t[0] = ""
485
elif len(t) == 2: t[0] = t[1]
486
- else: t[0] = "%s, %s"%(t[1],t[2])
+ else: t[0] = "%s, %s"%(t[1],t[3])
487
488
def p_return(t):
489
'statement : RETURN value'
@@ -734,7 +734,7 @@ def get_indexed_array_type(x):
734
735
736
737
-print "package com.pipelinescript;"
+#print "package com.pipelinescript;"
738
print header
739
print "public class Pipeline\n{"
740
print functions
0 commit comments