| 172 | } |
| 173 | |
| 174 | SmallIntVal ValidateSharedState(FunctionContext* context, SmallIntVal bytes) { |
| 175 | void* state = context->GetFunctionState(FunctionContext::THREAD_LOCAL); |
| 176 | EXPECT_TRUE(state != NULL); |
| 177 | memset(state, 0, bytes.val); |
| 178 | return SmallIntVal::null(); |
| 179 | } |
| 180 | |
| 181 | void ValidateSharedStateClose( |
| 182 | FunctionContext* context, FunctionContext::FunctionStateScope scope) { |
nothing calls this directly
no test coverage detected