bharani
bharani

Reputation: 81

Understanding grammar in SableCC

I am going through sableCC for one of my projects and I have few queries about the Grammar file. 1. What is the difference between Helper and Tokens? 2. What should go in helper and Token? 3. And most importantly what is Productions?

Upvotes: 0

Views: 481

Answers (1)

you can see the thesis here

Token : lexical defnitions for numbers, arithmetic op- erators, parentheses and blanks etc.

helper : is a character set or a regular expression denoted by an identifer.

Productions : is a grammar that you define for identify.

Upvotes: 0

Related Questions