/* ===================================================================== Source: let.rule ===================================================================== */ let_cmd : KW_LET atline obind_var_let_list EQUAL op_expr_null { set_cmdlineno($2); $$=new_let_cmd($3,$5); } ; op_expr_null : fgl_expr_concat { $$=$1; // Check to see if they've assigned a value of 'NULL' if ($1) { if ($1->list.list_len==1) { if ($1->list.list_val[0]->expr_type==ET_EXPR_NULL) { $$=0; } } } } ; /* ============================= let.rule ========================== */