/* * Copyright (c) 2022, the SerenityOS developers. * * SPDX-License-Identifier: BSD-2-Clause */ #include #include #include namespace Web::Bindings { WindowConstructor::WindowConstructor(JS::Realm& realm) : NativeFunction(*realm.intrinsics().function_prototype()) { } WindowConstructor::~WindowConstructor() = default; JS::ThrowCompletionOr WindowConstructor::call() { return vm().throw_completion(JS::ErrorType::ConstructorWithoutNew, "Window"); } JS::ThrowCompletionOr WindowConstructor::construct(FunctionObject&) { return vm().throw_completion(JS::ErrorType::NotAConstructor, "Window"); } void WindowConstructor::initialize(JS::Realm& realm) { auto& vm = this->vm(); NativeFunction::initialize(realm); define_direct_property(vm.names.prototype, &cached_web_prototype(realm, "Window"), 0); define_direct_property(vm.names.length, JS::Value(0), JS::Attribute::Configurable); } }