野牛如何写规则?

时间:2013-10-11 05:56:16

标签: bison bisonc++

我有这样的规则:

A --> a B C d,其中a, d是终端符号 B, C是非终端符号。

B -->   a1 | a2 | a3
C -->   a4 | a5 | a6

我在野牛中写过这条规则:

  my_rule:
            a B C d   {   handler->handle_B_C(handle_B($2), handle_C($3)); }
  B :
      a1 { $$ = ONE; }
    | a2 { $$ = TWO; }
    | a3 { $$ = THREE; }
    ;
  C:
         a4 { $$ = FOUR; } 
      | a5  { $$ = FIVE; }
      | a6  { $$ = SIX  }

我想这样的规则是这样的:

   A --> a B
   A --> errorCase
   B --> a1 C | a2 C | a3 C
   B --> errorCase
   C --> a4 D | a5 D | a6D
   D --> d
   D -->errorCase

但我不知道如何在野牛中写下它。任何人都可以帮助我在野牛中写下它吗? (我不知道如何获得B和D的值)

1 个答案:

答案 0 :(得分:1)

yacc(BSD)接受以下语法而没有任何问题。它也应该与bison(Linux)一起使用。

按照一般惯例,代币通常是大写的,规则是小写的。

%token A A1 A2 A3 A4 A5 A6 A7 D

%%

a
    : A b {
        $$ = node($1, $2);
    }
    ;

b
    : A1 c {
        $$ = node($1, $2);
    }
    | A2 c {
         $$ = node($1, $2);
    }
    | A3 c {
         $$ = node($1, $2);
    }
    ;

c
    : A4 d {
         $$ = node($1, $2);
    }
    | A5 d {
         $$ = node($1, $2);
    }
    | A6 d {
         $$ = node($1, $2);
    }
    ;

d
    : D {
        $$ = node($1);
    }
    ;
%%

#include <stdio.h>

void yyerror(const char *s)
{
    fflush(stdout);
    fprintf(stderr, "*** %s\n", s);
}