Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Unreleased]

## [0.19.0] - 2022-04-27
- Add `tsc-build-parser-from-source` for building tree sitter grammars locally

## [0.18.0] - 2022-02-12
- Added APIs to traverse the syntax tree: `tsc-traverse-do`, `tsc-traverse-mapc`, `tsc-traverse-iter`. The traversal is depth-first pre-order.
- Improved syntax tree rendering's performance in `tree-sitter-debug`.
Expand Down
2 changes: 2 additions & 0 deletions bin/test
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ if [[ $* == "watch" ]]; then
else
if [[ $* == "integ" ]]; then
test_mod="tsc-dyn-get-tests.el"
elif [[ $* == "build" ]]; then
test_mod="tsc-build.el"
elif [[ $* == "bench" ]]; then
test_mod="tree-sitter-bench.el"
else
Expand Down
Loading