Sign in
chromium
/
devtools
/
devtools-frontend
/
bedbd4f3fe201caedff255ae97fdf875e13063f8
/
.
/
node_modules
/
webidl2
/
lib
/
productions
/
array-base.js
blob: 7256e0ee7750489f86d94703f486f0c65e2a23c0 [
file
]
// @ts-check
export
class
ArrayBase
extends
Array
{
constructor
({
source
,
tokens
})
{
super
();
Object
.
defineProperties
(
this
,
{
source
:
{
value
:
source
},
tokens
:
{
value
:
tokens
},
parent
:
{
value
:
null
,
writable
:
true
},
});
}
}