| 52 | } |
| 53 | |
| 54 | static Value GetByteOffset(const CallbackInfo& info) { |
| 55 | return Number::New(info.Env(), |
| 56 | static_cast<double>(info[0].As<DataView>().ByteOffset())); |
| 57 | } |
| 58 | |
| 59 | static Value GetByteLength(const CallbackInfo& info) { |
| 60 | return Number::New(info.Env(), |
nothing calls this directly
no test coverage detected