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