An incremental parsing system for programming tools https://tree-sitter.github.io
Find a file
Max Brunsfeld f7e4445358 Handle goto actions after reductions in a more standard way
Rather than letting the reduced tree become the new lookahead symbol,
and re-adding it to the stack via a subsequent shift action, just
add it to the stack as part of the reduce action. This is more in
line with the way LR is described traditionally.
2015-05-27 10:53:02 -07:00
externals Read unicode characters using utf8proc 2014-09-13 00:24:10 -07:00
include/tree_sitter Replace {left,right}_assoc w/ prec, with an associativity argument 2015-03-23 21:06:31 -07:00
script Add configure flag for excluding libprofiler 2015-02-16 22:09:30 -08:00
spec Handle goto actions after reductions in a more standard way 2015-05-27 10:53:02 -07:00
src Handle goto actions after reductions in a more standard way 2015-05-27 10:53:02 -07:00
.clang-format Tweak auto-format settings 2014-09-09 13:15:40 -07:00
.gitignore Add vim YCM config file 2014-06-23 12:47:12 -07:00
.gitmodules Generate makefile with gyp 2014-03-03 13:20:44 -08:00
.travis.yml Use docker infrastructure on travis-ci 2015-04-17 11:27:40 -07:00
project.gyp Improve reduce/reduce conflict error message 2015-03-16 11:59:45 -07:00
README.md repo name tree_sitter -> tree-sitter 2014-07-13 22:14:03 -07:00
tests.gyp Add configure flag for excluding libprofiler 2015-02-16 22:09:30 -08:00
todo.md Update todo 2014-10-17 23:52:53 -07:00

tree-sitter

A library for generating incremental LR parsers with integrated lexers

Build Status

References