set the provided AST for access through the QueryCtx
| 187 | |
| 188 | // set the provided AST for access through the QueryCtx |
| 189 | void QueryCtx_SetAST |
| 190 | ( |
| 191 | AST *ast |
| 192 | ) { |
| 193 | QueryCtx *ctx = _QueryCtx_GetCreateCtx(); |
| 194 | ctx->query_data.ast = ast; |
| 195 | } |
| 196 | |
| 197 | // set the provided GraphCtx for access through the QueryCtx |
| 198 | void QueryCtx_SetGraphCtx |
no test coverage detected