(ctx any)
| 124 | } |
| 125 | |
| 126 | func (e Entry) GetURL(ctx any) *types.ContentURL { |
| 127 | vm := GetVM(ctx) |
| 128 | r, er := e.e.GetURL(GetContext(ctx)) |
| 129 | if er != nil { |
| 130 | throwForVM(vm, er) |
| 131 | } |
| 132 | return r |
| 133 | } |
| 134 | |
| 135 | func (e Entry) GetReader(ctx any, start, size int64) ReadCloser { |
| 136 | vm := GetVM(ctx) |
nothing calls this directly
no test coverage detected