Skip to content

Commit 40ce7d2

Browse files
Ethan LebaEthan Leba
Ethan Leba
authored and
Ethan Leba
committed
Add local parser building functionality
1 parent 3cfab8a commit 40ce7d2

File tree

8 files changed

+774
-6
lines changed

8 files changed

+774
-6
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
55

66
## [Unreleased]
77

8+
## [0.19.0] - 2022-04-27
9+
- Add `tsc-build-parser-from-source` for building tree sitter grammars locally
10+
811
## [0.18.0] - 2022-02-12
912
- Added APIs to traverse the syntax tree: `tsc-traverse-do`, `tsc-traverse-mapc`, `tsc-traverse-iter`. The traversal is depth-first pre-order.
1013
- Improved syntax tree rendering's performance in `tree-sitter-debug`.

bin/test

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ if [[ $* == "watch" ]]; then
1414
else
1515
if [[ $* == "integ" ]]; then
1616
test_mod="tsc-dyn-get-tests.el"
17+
elif [[ $* == "build" ]]; then
18+
test_mod="tsc-build.el"
1719
elif [[ $* == "bench" ]]; then
1820
test_mod="tree-sitter-bench.el"
1921
else

0 commit comments

Comments
 (0)