DOCSTRING_WRAPPER_TYPES (tree-sitter-helpers.ts).
(kind: &str)
| 7 | |
| 8 | /// DOCSTRING_WRAPPER_TYPES (tree-sitter-helpers.ts). |
| 9 | fn is_wrapper(kind: &str) -> bool { |
| 10 | matches!( |
| 11 | kind, |
| 12 | "export_statement" |
| 13 | | "decorated_definition" |
| 14 | | "lexical_declaration" |
| 15 | | "variable_declaration" |
| 16 | | "variable_declarator" |
| 17 | | "ambient_declaration" |
| 18 | ) |
| 19 | } |
| 20 | |
| 21 | fn is_comment(kind: &str) -> bool { |
| 22 | matches!( |
no outgoing calls
no test coverage detected