tastott / jsoql

A SQL-like language for querying JSON data
http://tastott.github.io/jsoql
3 stars 1 forks source link

Implement unary minus #77

Closed tastott closed 9 years ago

tastott commented 9 years ago

It looks like some kind of Jison jiggery-pokery is required here. From the Jison calculator example:

 | '-' e %prec UMINUS
              {$$ = -$2;}