tree-sitter/README.md

14 lines
920 B
Markdown
Raw Normal View History

2015-09-10 11:29:35 -07:00
# tree-sitter
2014-02-19 09:28:31 -08:00
2018-01-10 13:44:23 -08:00
[![Build Status](https://travis-ci.org/tree-sitter/tree-sitter.svg?branch=master)](https://travis-ci.org/tree-sitter/tree-sitter)
2017-08-09 10:29:15 -07:00
[![Build status](https://ci.appveyor.com/api/projects/status/vtmbd6i92e97l55w/branch/master?svg=true)](https://ci.appveyor.com/project/maxbrunsfeld/tree-sitter/branch/master)
2014-03-09 12:19:04 -07:00
Tree-sitter is a parser generator tool and an incremental parsing library. It can build a concrete syntax tree for a source file and efficiently update the syntax tree as the source file is edited. Tree-sitter aims to be:
2015-09-10 11:29:35 -07:00
* **General** enough to parse any programming language
* **Fast** enough to parse on every keystroke in a text editor
* **Robust** enough to provide useful results even in the presence of syntax errors
* **Dependency-free** so that the runtime library (which is written in pure C) can be embedded in any application
2015-09-10 11:29:35 -07:00
[Documentation](http://tree-sitter.github.io/tree-sitter/)