REACT_COMPONENT_HOCS (tree-sitter.ts, #841).
(callee: &str)
| 107 | |
| 108 | /// REACT_COMPONENT_HOCS (tree-sitter.ts, #841). |
| 109 | fn is_react_hoc(callee: &str) -> bool { |
| 110 | matches!(callee, "forwardRef" | "memo" | "React.forwardRef" | "React.memo") |
| 111 | } |
| 112 | |
| 113 | fn is_vue_collection_name(name: &str) -> bool { |
| 114 | matches!(name, "actions" | "mutations" | "getters") |