cpython/Parser/listnode.c

67 lines
1.3 KiB
C
Raw Normal View History

1991-02-19 12:39:46 +00:00
1990-10-14 12:07:46 +00:00
/* List a node on a file */
1990-12-20 15:06:42 +00:00
#include "pgenheaders.h"
1990-10-14 12:07:46 +00:00
#include "token.h"
#include "node.h"
1990-12-20 15:06:42 +00:00
/* Forward */
static void list1node(FILE *, node *);
static void listnode(FILE *, node *);
1990-12-20 15:06:42 +00:00
void
PyNode_ListTree(node *n)
1990-12-20 15:06:42 +00:00
{
listnode(stdout, n);
1990-12-20 15:06:42 +00:00
}
1990-10-14 12:07:46 +00:00
static int level, atbol;
static void
listnode(FILE *fp, node *n)
1990-12-20 15:06:42 +00:00
{
level = 0;
atbol = 1;
list1node(fp, n);
1990-12-20 15:06:42 +00:00
}
1990-10-14 12:07:46 +00:00
static void
list1node(FILE *fp, node *n)
1990-10-14 12:07:46 +00:00
{
if (n == 0)
return;
if (ISNONTERMINAL(TYPE(n))) {
int i;
for (i = 0; i < NCH(n); i++)
list1node(fp, CHILD(n, i));
}
else if (ISTERMINAL(TYPE(n))) {
switch (TYPE(n)) {
case INDENT:
++level;
break;
case DEDENT:
--level;
break;
default:
if (atbol) {
int i;
for (i = 0; i < level; ++i)
fprintf(fp, "\t");
atbol = 0;
}
if (TYPE(n) == NEWLINE) {
if (STR(n) != NULL)
fprintf(fp, "%s", STR(n));
fprintf(fp, "\n");
atbol = 1;
}
else
fprintf(fp, "%s ", STR(n));
break;
}
}
else
fprintf(fp, "? ");
1990-10-14 12:07:46 +00:00
}