(ctx context.Context, overlays map[tspath.Path]*Overlay, change SnapshotChange)
| 1188 | } |
| 1189 | |
| 1190 | func (s *Session) UpdateSnapshot(ctx context.Context, overlays map[tspath.Path]*Overlay, change SnapshotChange) { |
| 1191 | s.updateSnapshot(ctx, overlays, change, false) |
| 1192 | } |
| 1193 | |
| 1194 | // updateSnapshotRef is like UpdateSnapshot but returns the created snapshot |
| 1195 | // with an extra reference for the caller. The ref is taken atomically with |
no test coverage detected