Searched refs:MAYBE_ASSIGNMENT (Results 1 – 1 of 1) sorted by relevance
/busybox-1.35.0/shell/ |
D | hush.c | 762 MAYBE_ASSIGNMENT = 0, enumerator 3914 if (MAYBE_ASSIGNMENT != 0) in initialize_context() 3915 ctx->is_assignment = MAYBE_ASSIGNMENT; in initialize_context() 3968 { "if", RES_IF, MAYBE_ASSIGNMENT, FLAG_THEN | FLAG_START }, in match_reserved_word() 3969 { "then", RES_THEN, MAYBE_ASSIGNMENT, FLAG_ELIF | FLAG_ELSE | FLAG_FI }, in match_reserved_word() 3970 { "elif", RES_ELIF, MAYBE_ASSIGNMENT, FLAG_THEN }, in match_reserved_word() 3971 { "else", RES_ELSE, MAYBE_ASSIGNMENT, FLAG_FI }, in match_reserved_word() 3976 { "while", RES_WHILE, MAYBE_ASSIGNMENT, FLAG_DO | FLAG_START }, in match_reserved_word() 3977 { "until", RES_UNTIL, MAYBE_ASSIGNMENT, FLAG_DO | FLAG_START }, in match_reserved_word() 3979 { "do", RES_DO, MAYBE_ASSIGNMENT, FLAG_DONE }, in match_reserved_word() [all …]
|