This PR mitigates the crash issue with the cost of the parsed tree being inaccurate in the previously crashed cases, but the parsed tree should be accurate again once the typing finished if the assumption of the crash caused by unfinished typing is correct.
Since tree-sitter-cli hardcoded the -fno-exceptions flag for the tree-sitter test command, the "avoid crash" build is not enabled in the source code by default, but it's enabled for the node/rust binding. To enable the "avoid crash" build for a custom binding, simply define the TREE_SITTER_MARKDOWN_AVOID_CRASH macro with -fexceptions flag enabled.
Fixes #24
This PR mitigates the crash issue with the cost of the parsed tree being inaccurate in the previously crashed cases, but the parsed tree should be accurate again once the typing finished if the assumption of the crash caused by unfinished typing is correct.
Since
tree-sitter-cli
hardcoded the-fno-exceptions
flag for thetree-sitter test
command, the "avoid crash" build is not enabled in the source code by default, but it's enabled for the node/rust binding. To enable the "avoid crash" build for a custom binding, simply define theTREE_SITTER_MARKDOWN_AVOID_CRASH
macro with-fexceptions
flag enabled.