[Compiler-sig] Bug in astmodule?

Neal Norwitz neal@metaslash.com
Fri, 19 Apr 2002 11:44:57 -0400


            if (strcmp(STR(CHILD(n, 1)), "in") == 0)
                return NotIn;
            if (strcmp(STR(CHILD(n, 0)), "is") == 0)
                return IsNot;

Shouldn't the 2nd if, do CHILD(n, 1) like the first?

Neal