# gml-pegjs
A GML (GameMaker language) parser using [pegjs](http://pegjs.org/)

This is derived from the JavaScript peg.js parser at https://github.com/pegjs/pegjs/blob/0c39f1cf86d73c85a1f832e6cfddf4176f9e58bc/examples/javascript.pegjs

## Installing

``` bash
npm install gml-pegjs
```

## Developing

This is an still an experimental parser, so if you find any false positives or false negatives, please create a new issue.

If you want to contribute to this project, follow the steps below to get the source:
``` bash
git clone https://github.com/ThomasHickman/gml-pegjs
npm install pegjs -g
cd ./gml-pegjs
npm install
```


## Licence

This project is licensed under the [MIT license (MIT)](LICENSE).
