()
| 36 | } |
| 37 | |
| 38 | func newMaterializedState() materializedState { |
| 39 | return materializedState{ |
| 40 | charts: make(map[string]*materializedChartState), |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | func (s materializedState) clone() materializedState { |
| 45 | if len(s.charts) == 0 { |
no outgoing calls
searching dependent graphs…