mirror of
https://github.com/Samsung/escargot.git
synced 2026-06-22 10:01:50 +00:00
Update ArrayBuffer::isDetachedBuffer check
Signed-off-by: Seonghyun Kim <sh8281.kim@samsung.com>
This commit is contained in:
parent
633fe63795
commit
ad3844437e
1 changed files with 1 additions and 1 deletions
|
|
@ -93,7 +93,7 @@ public:
|
|||
|
||||
ALWAYS_INLINE bool isDetachedBuffer()
|
||||
{
|
||||
return (data() == nullptr);
|
||||
return !m_backingStore.hasValue();
|
||||
}
|
||||
|
||||
// https://tc39.es/ecma262/#sec-isfixedlengtharraybuffer
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue