()
| 112 | } |
| 113 | |
| 114 | func (c *buildCacheContext) ID() string { |
| 115 | id := c.v.ID |
| 116 | if c.trunc { |
| 117 | id = TruncateID(c.v.ID) |
| 118 | } |
| 119 | if c.v.InUse { |
| 120 | return id + "*" |
| 121 | } |
| 122 | return id |
| 123 | } |
| 124 | |
| 125 | func (c *buildCacheContext) Parent() string { |
| 126 | var parent string |
nothing calls this directly
no test coverage detected