comparison src/parse.y @ 4930:bdb307dc8613

[project @ 2004-08-05 04:55:26 by jwe]
author jwe
date Thu, 05 Aug 2004 04:55:26 +0000
parents fe71c458f438
children 4fc993a4e072
comparison
equal deleted inserted replaced
4929:585e9a8c2ef8 4930:bdb307dc8613
668 cell_or_matrix_row 668 cell_or_matrix_row
669 : arg_list 669 : arg_list
670 { $$ = $1; } 670 { $$ = $1; }
671 | arg_list ',' // Ignore trailing comma. 671 | arg_list ',' // Ignore trailing comma.
672 { $$ = $1; } 672 { $$ = $1; }
673 ;
674
675 fcn_handle : '@' FCN_HANDLE
676 {
677 $$ = make_fcn_handle ($2);
678 lexer_flags.looking_at_function_handle--;
679 }
673 ; 680 ;
674 681
675 fcn_handle : FCN_HANDLE 682 fcn_handle : FCN_HANDLE
676 { $$ = make_fcn_handle ($1); } 683 { $$ = make_fcn_handle ($1); }
677 ; 684 ;