()
| 188 | } |
| 189 | |
| 190 | func (tf TempFile) Size() int64 { |
| 191 | info, e := tf.f.Stat() |
| 192 | if e != nil { |
| 193 | tf.vm.ThrowError(e) |
| 194 | } |
| 195 | return info.Size() |
| 196 | } |
| 197 | |
| 198 | func (tf TempFile) close() error { |
| 199 | _ = tf.f.Close() |
nothing calls this directly
no test coverage detected