Compare commits

..

No commits in common. "c45131d029d500e4ad5bcb42d1d1ccdd5727a094" and "fe49453d0a961a97f26bbc7a314e2d326e37e99c" have entirely different histories.

2 changed files with 7 additions and 7 deletions

View File

@ -154,8 +154,8 @@ prune_children(node_t **simplified, node_t *root)
switch (root->type)
{
case GLOBAL:
//case ARGUMENT_LIST:
//case PARAMETER_LIST:
case ARGUMENT_LIST:
case PARAMETER_LIST:
case STATEMENT:
case PRINT_ITEM:
case PRINT_STATEMENT:
@ -287,6 +287,7 @@ flatten(node_t **simplified, node_t *root)
*simplified = result;
}
static void
simplify_tree ( node_t **simplified, node_t *root )
{

View File

@ -87,8 +87,7 @@ tree_print(node_t* root, stem head)
printf("─%s", node_string[root->type]);
if ( root->type == IDENTIFIER_DATA ||
root->type == STRING_DATA ||
root->type == EXPRESSION ||
root->type == RELATION)
root->type == EXPRESSION )
printf("(%s)", (char *) root->data);
else if (root->type == NUMBER_DATA)
printf("(%ld)", *((int64_t *)root->data));