fwcd / tree-sitter-kotlin

Kotlin grammar for Tree-sitter
https://fwcd.github.io/tree-sitter-kotlin
MIT License
126 stars 52 forks source link

fix(scanner): prefer abort over exit #111

Closed amaanq closed 7 months ago

amaanq commented 7 months ago

exit is not thread-safe and abort is preferred for program termination in general

https://github.com/tree-sitter/tree-sitter/issues/805 https://github.com/tree-sitter/tree-sitter/issues/2991

Thanks!