$ git checkout https://github.com/bcardiff/crystal-ast-helper.git
$ cd crystal-ast-helper
$ shards
$ crystal src/ast_helper.cr
$ open http://localhost:9090
If you want to use with crystal head use:
$ path/to/crystal-clone/bin/crystal src/ast_helper.cr
When opening http://localhost:9090 you will be able to:
- input source
- view the output according to the formatter
- view the tokens returned by the lexer used for parsing and for formatting
- view the tokens consumed so far even if the formatter fails
- view the stack trace of each token
- view the AST of the whole program
- Fork it (https://github.com/bcardiff/crystal-ast-helper/fork)
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
- bcardiff Brian J. Cardiff - creator, maintainer