/* * Copyright (c) 2020, Linus Groh #include namespace JS { TypedArrayPrototype::TypedArrayPrototype(GlobalObject& global_object) : Object(*global_object.object_prototype()) { } void TypedArrayPrototype::initialize(GlobalObject& object) { Object::initialize(object); } TypedArrayPrototype::~TypedArrayPrototype() { } }