func()

in llresult/results.go [91:101]


func (r *Results) Record(p llpath.Path, result ValueResult) {
	if r.Fields[p.String()] == nil {
		r.Fields[p.String()] = []ValueResult{result}
	} else {
		r.Fields[p.String()] = append(r.Fields[p.String()], result)
	}

	if !result.Valid {
		r.Valid = false
	}
}