| 231 | } |
| 232 | |
| 233 | ReferenceInfoBuilder ReferenceInfoBuilder::withProperty(const StringBox& property) const { |
| 234 | return ReferenceInfoBuilder(*this, Type::Property, &property, 0); |
| 235 | } |
| 236 | |
| 237 | ReferenceInfoBuilder ReferenceInfoBuilder::withArrayIndex(size_t index) const { |
| 238 | return ReferenceInfoBuilder(*this, Type::ArrayItem, nullptr, index); |