Sign in
chromium
/
devtools
/
devtools-frontend
/
main
/
.
/
node_modules
/
webidl2
/
lib
/
productions
/
array-base.js
blob: 18304a004e1fe80d16955c72396761ffd9c13cce [
file
] [
log
] [
blame
]
export
class
ArrayBase
extends
Array
{
constructor
({
source
,
tokens
})
{
super
();
Object
.
defineProperties
(
this
,
{
source
:
{
value
:
source
},
tokens
:
{
value
:
tokens
},
parent
:
{
value
:
null
,
writable
:
true
},
});
}
}