Started working on ast

This commit is contained in:
Maieul BOYER 2024-06-11 16:08:12 +02:00
parent 9aee1f2272
commit 1d4dc219db
No known key found for this signature in database
1344 changed files with 118659 additions and 107610 deletions

View file

@ -13,25 +13,27 @@
#ifndef FIELD_IDENTIFIERS_H
# define FIELD_IDENTIFIERS_H
enum e_field_identifiers
{
enum e_field_identifiers {
field_alternative = 1,
field_arg = 2,
field_body = 3,
field_cases = 4,
field_cmd = 5,
field_cmds = 6,
field_condition = 7,
field_consequence = 8,
field_dest = 9,
field_fd = 10,
field_left = 11,
field_name = 12,
field_op = 13,
field_redirect = 14,
field_right = 15,
field_value = 16,
field_variable = 17,
field_condition = 6,
field_consequence = 7,
field_dest = 8,
field_elif = 9,
field_else = 10,
field_fd = 11,
field_left = 12,
field_name = 13,
field_op = 14,
field_redirect = 15,
field_right = 16,
field_stmt = 17,
field_terminator = 18,
field_value = 19,
field_variable = 20,
};
#endif // FIELD_IDENTIFIERS_H