mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-06-19 08:11:58 +00:00
Represent WebIDL C++ types with a single CppType model that tracks nullability, optional presence, and contained storage. GC-like values now use GC::Ref/GC::Ptr directly, while containers choose "plain", "Root", or "Conservative" container types depending on what they contain. For example, sequence<Element> becomes a RootVector of GC::Ref values, while sequence<SomeDictionary> becomes a ConservativeVector only when the dictionary contains GC-like values. This moves the generated bindings away from wrapping GC values in GC::Root by default. This has broad fallout as the types passed to interfaces for GC objects changes almost fully across the board.
41 lines
1.4 KiB
C++
41 lines
1.4 KiB
C++
/*
|
|
* Copyright (c) 2025, Sam Atkins <sam@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/CSS/CSSMathValue.h>
|
|
|
|
namespace Web::CSS {
|
|
|
|
// https://drafts.css-houdini.org/css-typed-om-1/#cssmathproduct
|
|
class CSSMathProduct final : public CSSMathValue {
|
|
WEB_PLATFORM_OBJECT(CSSMathProduct, CSSMathValue);
|
|
GC_DECLARE_ALLOCATOR(CSSMathProduct);
|
|
|
|
public:
|
|
[[nodiscard]] static GC::Ref<CSSMathProduct> create(JS::Realm&, NumericType, GC::Ref<CSSNumericArray>);
|
|
static WebIDL::ExceptionOr<GC::Ref<CSSMathProduct>> construct_impl(JS::Realm&, ReadonlySpan<CSSNumberish>);
|
|
static WebIDL::ExceptionOr<GC::Ref<CSSMathProduct>> multiply_all_types_into_math_product(JS::Realm&, GC::RootVector<GC::Ref<CSSNumericValue>> const&);
|
|
|
|
virtual ~CSSMathProduct() override;
|
|
|
|
virtual void initialize(JS::Realm&) override;
|
|
virtual void visit_edges(Visitor&) override;
|
|
|
|
GC::Ref<CSSNumericArray> values() const;
|
|
|
|
virtual void serialize_math_value(StringBuilder&, Nested, Parens) const override;
|
|
virtual bool is_equal_numeric_value(GC::Ref<CSSNumericValue> other) const override;
|
|
virtual Optional<SumValue> create_a_sum_value() const override;
|
|
|
|
virtual WebIDL::ExceptionOr<NonnullRefPtr<CalculationNode const>> create_calculation_node(CalculationContext const&) const override;
|
|
|
|
private:
|
|
CSSMathProduct(JS::Realm&, NumericType, GC::Ref<CSSNumericArray>);
|
|
GC::Ref<CSSNumericArray> m_values;
|
|
};
|
|
|
|
}
|