Skip to content
ast_sep.c 1.04 KiB
Newer Older
Seblu's avatar
Seblu committed
/*
** ast_sep.c for 42sh
**
** Made by Seblu
Seblu's avatar
Seblu committed
** Login   <seblu@epita.fr>
Seblu's avatar
Seblu committed
**
** Started on  Thu Aug  3 02:41:37 2006 Seblu
Seblu's avatar
Seblu committed
** Last update Tue Sep 26 17:10:01 2006 Seblu
Seblu's avatar
Seblu committed
*/

#include "ast.h"

Seblu's avatar
Seblu committed
s_ast_node	*ast_sep_create(s_ast_node *lhs, s_ast_node *rhs)
Seblu's avatar
Seblu committed
{
Seblu's avatar
Seblu committed
  s_ast_node	*node;
Seblu's avatar
Seblu committed

Seblu's avatar
Seblu committed
  secmalloc(node, sizeof (s_ast_node));
Seblu's avatar
Seblu committed
  node->type = T_SEP;
  node->body.child_sep.lhs = lhs;
  node->body.child_sep.rhs = rhs;
  return node;
}

Seblu's avatar
Seblu committed
void		ast_sep_print(s_ast_node *node, FILE *fs, unsigned int *node_id)
{
  unsigned int	lhs_id, rhs_id, cur_id;

  if (node->type != T_SEP)
    return;
  fprintf(fs, "%u [label = \";\"];\n", cur_id = *node_id);
  lhs_id = ++*node_id;
  ast_print_node(node->body.child_sep.lhs, fs, node_id);
  fprintf(fs, "%u -> %u\n", cur_id, lhs_id);
  rhs_id = *node_id;
  ast_print_node(node->body.child_sep.rhs, fs, node_id);
  fprintf(fs, "%u -> %u\n", cur_id, rhs_id);
}

Seblu's avatar
Seblu committed
void		ast_sep_destruct(s_ast_node *node)
Seblu's avatar
Seblu committed
{
Seblu's avatar
Seblu committed
  if (node->type != T_SEP)
Seblu's avatar
Seblu committed
    return;
  ast_destruct(node->body.child_sep.lhs);
  ast_destruct(node->body.child_sep.rhs);
  free(node);
}