Extract a Go file using cbm_extract_file (runs single-file LSP internally) */
| 17 | |
| 18 | /* Extract a Go file using cbm_extract_file (runs single-file LSP internally) */ |
| 19 | static CBMFileResult *extract_go(const char *source) { |
| 20 | return cbm_extract_file(source, (int)strlen(source), CBM_LANG_GO, "test", "main.go", 0, NULL, |
| 21 | NULL); |
| 22 | } |
| 23 | |
| 24 | /* Search resolved_calls for a match where caller contains callerSub |
| 25 | * and callee contains calleeSub. Returns index or -1. */ |
no test coverage detected