| 531 | } |
| 532 | |
| 533 | void Executor::RunPreparedContext(ExecutorPrepareContext* ctx, |
| 534 | Scope* scope, |
| 535 | bool create_local_scope, |
| 536 | bool create_vars, |
| 537 | bool keep_kids) { |
| 538 | int64_t start_op_index = 0; |
| 539 | int64_t end_op_index = static_cast<int64_t>(ctx->ops_.size()); |
| 540 | RunPartialPreparedContext(ctx, |
| 541 | scope, |
| 542 | start_op_index, |
| 543 | end_op_index, |
| 544 | create_local_scope, |
| 545 | create_vars, |
| 546 | keep_kids); |
| 547 | } |
| 548 | |
| 549 | void Executor::RunPreparedContext( |
| 550 | ExecutorPrepareContext* ctx, |