| 79 | using ::google::rpc::context::AttributeContext; |
| 80 | |
| 81 | RuntimeOptions GetOptions() { |
| 82 | RuntimeOptions options; |
| 83 | |
| 84 | if (absl::GetFlag(FLAGS_enable_recursive_planning)) { |
| 85 | options.max_recursion_depth = -1; |
| 86 | } |
| 87 | |
| 88 | return options; |
| 89 | } |
| 90 | |
| 91 | enum class ConstFoldingEnabled { kNo, kYes }; |
| 92 |
no outgoing calls
no test coverage detected