cpython/Parser/listnode.c

81 lines
1.4 KiB
C
Raw Normal View History

1991-02-19 12:39:46 +00:00
/***********************************************************
2000-06-30 23:50:40 +00:00
Copyright (c) 2000, BeOpen.com.
Copyright (c) 1995-2000, Corporation for National Research Initiatives.
Copyright (c) 1990-1995, Stichting Mathematisch Centrum.
All rights reserved.
1991-02-19 12:39:46 +00:00
2000-06-30 23:50:40 +00:00
See the file "Misc/COPYRIGHT" for information on usage and
redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
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 */
1997-04-29 21:03:06 +00:00
static void list1node Py_PROTO((FILE *, node *));
static void listnode Py_PROTO((FILE *, node *));
1990-12-20 15:06:42 +00:00
void
1997-04-29 21:03:06 +00:00
PyNode_ListTree(n)
1990-12-20 15:06:42 +00:00
node *n;
{
listnode(stdout, n);
}
1990-10-14 12:07:46 +00:00
static int level, atbol;
static void
1990-12-20 15:06:42 +00:00
listnode(fp, n)
FILE *fp;
node *n;
{
level = 0;
atbol = 1;
list1node(fp, n);
}
1990-10-14 12:07:46 +00:00
static void
list1node(fp, n)
FILE *fp;
node *n;
{
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, "? ");
}