An incremental parsing system for programming tools https://tree-sitter.github.io
Find a file
Max Brunsfeld 3430a5edcc Clarify distinction btwn tree padding, tree offset, node position
- Node position is public. It represents the node's first character
  index in the document.
- Tree offset is private. It represents the distance between the tree's
  first character index and it's parent's first character index.
- Tree padding is private. It represents the amount of whitespace
  (or other separator characters) immediately preceding the tree.
2014-08-28 13:22:06 -07:00
etc Add valgrind helper script 2014-06-09 13:24:30 -07:00
examples Remove LEX_PANIC macro 2014-08-26 13:12:12 -07:00
externals Bump bandit 2014-06-16 13:21:03 -07:00
include/tree_sitter Fix initializer list deduction warnings in specs 2014-08-27 22:23:45 -07:00
script Separate .gyp files for libs and tests 2014-07-25 12:55:00 -07:00
spec Clarify distinction btwn tree padding, tree offset, node position 2014-08-28 13:22:06 -07:00
src Clarify distinction btwn tree padding, tree offset, node position 2014-08-28 13:22:06 -07:00
.clang-format Add format script 2014-07-20 22:12:09 -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 Make separate helper scripts for testing compiler and runtime 2014-07-17 22:20:14 -07:00
.vimrc Add project vimrc 2014-06-26 07:29:23 -07:00
.ycm_extra_conf.py Add vim YCM config file 2014-06-23 12:47:12 -07:00
project.gyp Move StringInput into its own file 2014-08-01 12:43:14 -07:00
README.md repo name tree_sitter -> tree-sitter 2014-07-13 22:14:03 -07:00
tests.gyp Fix missing comma between CC flags in tests gyp file 2014-08-27 21:34:42 -07:00
todo.md Update todo 2014-07-21 13:20:00 -07:00

tree-sitter

A library for generating incremental LR parsers with integrated lexers

Build Status

References