我试图找出我在下面的代码中出错的地方。
弹性输入:
%{
#include "jq.tab.h"
void yyerror(char *);
%}
method add|map|.. and other methods go here
%%
"/*" { return CS; }
"*/" { return CE; }
"jQuery" {
printf("%s is yytext\n", yytext);
return *yytext;
}
"args" { return ARGUMENT; }
{method} { return METHOD; }
[().\n] { return *yytext; }
[ \t]+ { return WS; }
. { return IGNORE; }
%%
int yywrap(void) {
return 1;
}
野牛输入:
%{
#include <stdio.h>
int yylex(void);
void yyerror(char *);
%}
%token ARGUMENT METHOD IGNORE WS CS CE
%error-verbose
%%
stmts:
stmt '\n' { printf("A single stmt\n"); }
| stmt '\n' stmts { printf("Multi stmts\n"); }
;
stmt:
jQuerycall { printf("A complete call ends here\n"); }
| ignorechars { printf("Ignoring\n"); }
| ignorechars WS jQuerycall { printf("ignore+js\n"); }
| jQuerycall WS ignorechars { printf("js+ignore\n"); }
| optionalws stmt optionalws
| CS stmt CE { printf("comment\n"); }
;
jQuerycall:
'jQuery' '(' ARGUMENT ')' '.' methodchain { printf("args n methodchain\n"); }
| 'jQuery' '(' ')' '.' methodchain { printf("methodchain\n"); }
| 'jQuery' '(' ARGUMENT ')' { printf("args\n"); }
| 'jQuery' '(' ')' { printf("empty call\n"); }
;
methodchain:
methodchain '.' methodcall
| methodcall
;
methodcall:
METHOD '(' ')'
;
ignorechars:
IGNORE
| IGNORE optionalws ignorechars
;
optionalws:
| WS
;
%%
void yyerror(char *s) {
fprintf(stderr, "%s\n", s);
}
int main(void) {
yyparse();
return 0;
}
我的目标是识别任何 jQuery 调用及其所有元素,并忽略任何其他语句/字符串。也忽略评论。现在,这段代码做了很多假设——比如 'args' 是 jQuery() 中唯一的选择器元素。
编辑
我正在使用以下输入输出案例。像 10 和 12 这样的案例是我想要弄清楚的:
> 1.input: statement\n output: Ignoring
>
> 2.input: statement statement\n output: Ignoring
>
> 3.input: statement statement statement\n output: Ignoring
>
> 4.input: jQuery()\n output: jQuery is yytext empty call A complete call ends here
>
> 5.input: jQuery(args)\n output: jQuery is yytext args A complete call ends here
>
> 6.input: jQuery().add()\n output: jQuery is yytext methodchain A complete call ends here
>
> 7.input: jQuery(args).add().map()\n output: jQuery is yytext args n methodchain A complete call ends here
>
> 8.input: /*comment*/\n output: Ignoring comment
>
> 9.input: /*jQuery()*/\n output: jQuery is yytext empty call A complete call ends here comment
>
> 10.input: /* comment */\n output: syntax error, unexpected CE, expecting IGNORE
>
> 11.input: var a = b\n output: Ignoring
>
> 12.input: var a = jQuery(args)\n output: jQuery is yytext syntax error, unexpected 'jQuery', expecting IGNORE