Exponent operator does not work when no space added? Whats wrong with my grammar

75 Views Asked by At

I am trying to write an expression evaluator in which I am trying to add underscore _ as a reserve word which would denote a certain constant value.

Here is my grammar, it successfully parses 5 ^ _ but it fails to parse _^ 5 (without space). It only acts up that way for ^ operator.

COMPILER Formula
CHARACTERS
    digit = '0'..'9'.
    letter = 'A'..'z'.
TOKENS
    number = digit {digit}.
    identifier = letter {letter|digit}.
    self = '_'.
IGNORE '\r' + '\n'

PRODUCTIONS
    Formula = Term{ ( '+' | '-')    Term}.                                              

    Term = Factor {( '*' | "/" |'%' | '^'   ) Factor}.

    Factor = number | Self.

    Self = self.
END Formula.

What am I missing? I am using Coco/R compiler generator.

2

There are 2 best solutions below

0
On BEST ANSWER

Your current definition of the token letter causes this issue because the range A..z includes the _ character and ^ character.

1
On

You can rewrite the Formula and Term rules like this:

Formula = Formula ( '+' | '-') Term  | Term                                             

Term = Term ( '*' | "/" |'%' | '^'   ) Factor | Factor

e.g. https://metacpan.org/pod/distribution/Marpa-R2/pod/Marpa_R2.pod#Synopsis