adhocteam / pushup

Pushup is for making modern, page-oriented web apps in Go
https://pushup.adhoc.dev
MIT License
840 stars 30 forks source link

parser: add line number and column to syntax errors #71

Closed paulsmith closed 1 year ago

paulsmith commented 1 year ago

This change adds the line number and column of the position of the syntax error of a parse.

Example, parsing:

^import-

Yields:

1:8: unexpected token type after ^import: -

Address #68