Home | History | Annotate | Download | only in functional

Lines Matching refs:COMMA

100     :   defparameter (options {greedy=true;}:COMMA defparameter)*
101 (COMMA
102 ( STAR NAME (COMMA DOUBLESTAR NAME)?
106 | STAR NAME (COMMA DOUBLESTAR NAME)?
120 : fpdef (options {greedy=true;}:COMMA fpdef)* (COMMA)?
197 raise_stmt: 'raise' (test (COMMA test (COMMA test)?)?)?
201 : 'import' dotted_as_name (COMMA dotted_as_name)*
203 (STAR | import_as_name (COMMA import_as_name)*)
216 global_stmt: 'global' NAME (COMMA NAME)*
219 exec_stmt: 'exec' expr ('in' test (COMMA test)?)?
222 assert_stmt: 'assert' test (COMMA test)?
250 except_clause: 'except' (test (COMMA test)?)?
326 listmaker: test ( list_for | (options {greedy=true;}:COMMA test)* ) (COMMA)?
338 : subscript (options {greedy=true;}:COMMA subscript)* (COMMA)?
351 : expr (options {k=2;}:COMMA expr)* (COMMA)?
355 : test (options {k=2;}: COMMA test)* (COMMA)?
360 (options {k=2;}:COMMA test COLON test)* (COMMA)?
367 arglist: argument (COMMA argument)*
368 ( COMMA
369 ( STAR test (COMMA DOUBLESTAR test)?
373 | STAR test (COMMA DOUBLESTAR test)?
400 COMMA : ',' ;