12.01.2013 Views

Tutorial Lex/Yacc - capsl

Tutorial Lex/Yacc - capsl

Tutorial Lex/Yacc - capsl

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

Bison: definition Section Example<br />

/*** Definition section ***/<br />

%{<br />

/* C code to be copied verbatim */<br />

%}<br />

%token NAME<br />

%token NUMBER<br />

%left '-' '+'<br />

%left '*' '/'<br />

%type expression<br />

Associativity Options:<br />

%left - a OP b OP c<br />

%right - a OP b OP c<br />

%nonassoc - a OP b OP c (ERROR)<br />

2/17/2012<br />

CAPSL<br />

45

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!