]> git.saurik.com Git - cycript.git/commitdiff
Detect all lexer state errors, and show line number.
authorJay Freeman (saurik) <saurik@saurik.com>
Sun, 23 Sep 2012 15:54:35 +0000 (08:54 -0700)
committerJay Freeman (saurik) <saurik@saurik.com>
Sun, 23 Sep 2012 15:54:35 +0000 (08:54 -0700)
GNUmakefile.in

index 1990dfab3edfc4e023a9a4ecd3fa5d2f3a09e0f2..0268180e807bd91c80e9982a24e06ddb48348c98 100644 (file)
@@ -204,8 +204,8 @@ distclean: clean
 
 Cycript.tab.cc Cycript.tab.hh location.hh position.hh: Cycript.yy
        $(bison) -v --report=state $<
-       ! grep '^ *$$default  reduce using rule [0-9]* (LexSetRegExp)$$' Cycript.output -B 2 | grep 'shift, and go to state [0-9]*$$'
-       ! grep '^ *$$default  reduce using rule [0-9]* (LexSetRegExp)$$' Cycript.output -B 2 | grep -v '\$default' | grep 'reduce using rule [0-9]* ([^)]*)$$'
+       ! grep -n '^ *$$default  reduce using rule [0-9]* (Lex[A-Z][^)]*)$$' Cycript.output -B 2 | grep 'shift, and go to state [0-9]*$$'
+       ! grep -n '^ *$$default  reduce using rule [0-9]* (Lex[A-Z][^)]*)$$' Cycript.output -B 2 | grep -v '\$default' | grep 'reduce using rule [0-9]* ([^)]*)$$'
 
 lex.cy.c: Cycript.l
        $(flex) -t $< | $(sed) -e 's/int yyl;/yy_size_t yyl;/;s/int yyleng_r;/yy_size_t yyleng_r;/' >$@