| 234 | |
| 235 | |
| 236 | static int |
| 237 | initializeAnalysis(ClientData clientData, Tcl_Interp *interp, Tcl_Size argc, |
| 238 | TCL_Char ** const argv) |
| 239 | { |
| 240 | assert(clientData != nullptr); |
| 241 | BasicAnalysisBuilder *builder = (BasicAnalysisBuilder*)clientData; |
| 242 | if (builder->initialize() < 0) |
| 243 | return TCL_ERROR; |
| 244 | return TCL_OK; |
| 245 | } |
| 246 | |
| 247 | |
| 248 |
nothing calls this directly
no test coverage detected