Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 524 Bytes

README.md

File metadata and controls

16 lines (11 loc) · 524 Bytes

Dart Chess PGN parser

Library for parsing PGN (Portable Game Notation) files, based on the antlr4 parser.

ANTLR

The grammar of the PGN file format is credited to Bart Kiers, see the PGN.g4.

To generate dart files based on the g4 file:

antlr4 -o lib/src/generated/ -Dlanguage=Dart -Xexact-output-dir antlr4/PGN.g4