| 235 | } |
| 236 | |
| 237 | ReferenceInfoBuilder ReferenceInfoBuilder::withArrayIndex(size_t index) const { |
| 238 | return ReferenceInfoBuilder(*this, Type::ArrayItem, nullptr, index); |
| 239 | } |
| 240 | |
| 241 | ReferenceInfoBuilder ReferenceInfoBuilder::withParameter(size_t index) const { |
| 242 | return ReferenceInfoBuilder(*this, Type::ParameterValue, nullptr, index); |