Lines Matching refs:propertyName
204 propertyName := fieldPath(namePrefix, PropertyNameForField(field.Name))
207 panic(fmt.Errorf("field %s is not settable", propertyName))
211 packedProperty, propertyIsSet := ctx.propertyMap[propertyName]
224 panic(fmt.Errorf("field %s contains a nil interface", propertyName))
229 panic(fmt.Errorf("field %s contains a non-pointer interface", propertyName))
246 panic(fmt.Errorf("field %s contains a pointer to %s", propertyName, ptrKind))
251 panic(fmt.Errorf(`int field %s must be tagged blueprint:"mutated"`, propertyName))
255 panic(fmt.Errorf("unsupported kind for field %s: %s", propertyName, kind))
274 fmt.Errorf("mutated field %s cannot be set in a Blueprint file", propertyName),
283 ctx.unpackToStruct(propertyName, fieldValue)
288 if unpackedValue, ok := ctx.unpackToSlice(propertyName, property, fieldValue.Type()); ok {