Set missing attribute patterns for evaluation. If a field access is found to match any of the provided patterns, the result is treated as a missing attribute error.
| 78 | // If a field access is found to match any of the provided patterns, the |
| 79 | // result is treated as a missing attribute error. |
| 80 | void set_missing_attribute_patterns( |
| 81 | std::vector<CelAttributePattern> missing_attribute_patterns) { |
| 82 | missing_attribute_patterns_ = std::move(missing_attribute_patterns); |
| 83 | } |
| 84 | |
| 85 | const std::vector<CelAttributePattern>& missing_attribute_patterns() |
| 86 | const override { |