Lines Matching refs:field
187 var nestStruct func(field reflect.StructField, value reflect.Value, fieldName string)
188 nestStruct = func(field reflect.StructField, value reflect.Value, fieldName string) {
190 if field.Anonymous {
195 ret = append(ret, nestedProperty{nestPoint: nestPoint, value: value, anonymous: field.Anonymous})
204 field := typ.Field(i)
205 if field.PkgPath != "" {
209 if proptools.HasTag(field, "blueprint", "mutated") {
219 nestStruct(field, fieldValue, field.Name)
229 "refers to a non-pointer", field.Name))
234 nestStruct(field, elem, field.Name)
239 field.Name, fieldValue.Kind()))