mirror of
https://github.com/tree-sitter/tree-sitter.git
synced 2026-09-15 18:06:20 -04:00
This command measures the speed of parsing each grammar's examples. It also uses each grammar to parse all of the *other* grammars' examples in order to measure error recovery performance with fairly large files.
11 lines
121 B
Bash
Executable file
11 lines
121 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
. script/lib.sh
|
|
|
|
script/fetch-fixtures
|
|
script/check-mallocs
|
|
script/test -b
|
|
script/benchmark
|