| Commit-Queue | +1 |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
void SetDetachKey(v8::Local<v8::String> key);technically we should a proper API deprecation for this 😞
}do you plan to allow more values? maybe worth making this stricter here?
DCHECK(value.IsSmi() || value.IsWeak());could this be a stricter check (kNoView, kManyViews)?
case Runtime::kArrayBufferDetach:nit: I guess we could remove it here?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
void SetDetachKey(v8::Local<v8::String> key);technically we should a proper API deprecation for this 😞
I know but, I couldn't find any users which would pass anything but Strings. Some wrappers even use String as the type. And the spec says that it is a string...
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
void SetDetachKey(v8::Local<v8::String> key);Olivier Flückigertechnically we should a proper API deprecation for this 😞
I know but, I couldn't find any users which would pass anything but Strings. Some wrappers even use String as the type. And the spec says that it is a string...
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
ptal
do you plan to allow more values? maybe worth making this stricter here?
Done
DEFINE_BOOL(track_array_buffer_views, true,TODO: set to false before landing
could this be a stricter check (kNoView, kManyViews)?
Done
case Runtime::kArrayBufferDetach:nit: I guess we could remove it here?
why? I think we want to have it in differential and normal fuzzing...
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
i'll have closer look at the logic parts after the new sentinel implementation
V8_DEPRECATED("Only Strings are supported as arguments")As discussed offline, no need to do this restriction, if we select the sentinels (many views, no views) in a different way.
// only fire the TypedArrayResizing protector.sounds like this sentence ends a bit abruptly :) "if we cannot" or such is missing
assertOptimized(Length);Why this change? We still kill the protector above...
assertFalse(isMaglevved(foo));Why this change?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |