Common error for cases where evaluation attempts to perform select operations on an unsupported type. This should not happen under normal usage of the evaluator, but useful for troubleshooting broken invariants.
| 46 | // This should not happen under normal usage of the evaluator, but useful for |
| 47 | // troubleshooting broken invariants. |
| 48 | absl::Status InvalidSelectTargetError() { |
| 49 | return absl::Status(absl::StatusCode::kInvalidArgument, |
| 50 | "Applying SELECT to non-message type"); |
| 51 | } |
| 52 | |
| 53 | absl::optional<Value> CheckForMarkedAttributes(const AttributeTrail& trail, |
| 54 | ExecutionFrameBase& frame) { |
no outgoing calls
no test coverage detected