()
| 2373 | |
| 2374 | #[test] |
| 2375 | fn symbols_closure_not_captured() { |
| 2376 | let content = b"<?php\n$fn = function () { return 1; };"; |
| 2377 | let result = find_symbols(content); |
| 2378 | assert!(result.functions.is_empty()); |
| 2379 | } |
| 2380 | |
| 2381 | #[test] |
| 2382 | fn use_function_not_captured() { |
nothing calls this directly
no test coverage detected