Files
ladybird/Libraries/LibWeb/Speech/SpeechGrammarList.cpp
2026-01-20 06:51:04 -05:00

50 lines
1.2 KiB
C++

/*
* Copyright (c) 2026, Jelle Raaijmakers <jelle@ladybird.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibJS/Runtime/Realm.h>
#include <LibWeb/Bindings/Intrinsics.h>
#include <LibWeb/Bindings/SpeechGrammarListPrototype.h>
#include <LibWeb/Speech/SpeechGrammarList.h>
#include <LibWeb/WebIDL/ExceptionOr.h>
namespace Web::Speech {
GC_DEFINE_ALLOCATOR(SpeechGrammarList);
WebIDL::ExceptionOr<GC::Ref<SpeechGrammarList>> SpeechGrammarList::construct_impl(JS::Realm& realm)
{
return realm.create<SpeechGrammarList>(realm);
}
SpeechGrammarList::SpeechGrammarList(JS::Realm& realm)
: Bindings::PlatformObject(realm)
{
}
SpeechGrammarList::~SpeechGrammarList() = default;
void SpeechGrammarList::initialize(JS::Realm& realm)
{
WEB_SET_PROTOTYPE_FOR_INTERFACE(SpeechGrammarList);
Base::initialize(realm);
}
void SpeechGrammarList::visit_edges(Cell::Visitor& visitor)
{
Base::visit_edges(visitor);
visitor.visit(m_grammars);
}
// https://wicg.github.io/speech-api/#dom-speechgrammarlist-item
GC::Ptr<SpeechGrammar> SpeechGrammarList::item(size_t index) const
{
if (index >= m_grammars.size())
return nullptr;
return m_grammars[index];
}
}