Enable -Wexit-time-destructors for all in-tree library targets and update process-lifetime library statics so they no longer register exit-time destructors. Long-lived caches, lookup tables, singleton registries, and generated constants now use NeverDestroyed or leaked references where the data is intended to live until process exit. Update LibWeb, LibLine, and the binding generators so regenerated sources follow the same rule instead of reintroducing destructed statics.
39 lines
1.2 KiB
C++
39 lines
1.2 KiB
C++
/*
|
|
* Copyright (c) 2025, Sam Atkins <sam@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/CSS/StyleValues/StyleValue.h>
|
|
|
|
namespace Web::CSS {
|
|
|
|
// https://drafts.csswg.org/css-variables/#guaranteed-invalid-value
|
|
class GuaranteedInvalidStyleValue final : public StyleValueWithDefaultOperators<GuaranteedInvalidStyleValue> {
|
|
public:
|
|
static ValueComparingNonnullRefPtr<GuaranteedInvalidStyleValue> create()
|
|
{
|
|
static auto& instance = adopt_ref(*new (nothrow) GuaranteedInvalidStyleValue()).leak_ref();
|
|
return instance;
|
|
}
|
|
virtual ~GuaranteedInvalidStyleValue() override = default;
|
|
virtual void serialize(StringBuilder&, SerializationMode) const override { }
|
|
virtual Vector<Parser::ComponentValue> tokenize() const override
|
|
{
|
|
return { Parser::ComponentValue { Parser::GuaranteedInvalidValue {} } };
|
|
}
|
|
|
|
bool properties_equal(GuaranteedInvalidStyleValue const&) const { return true; }
|
|
|
|
virtual bool is_computationally_independent() const override { VERIFY_NOT_REACHED(); }
|
|
|
|
private:
|
|
GuaranteedInvalidStyleValue()
|
|
: StyleValueWithDefaultOperators(Type::GuaranteedInvalid)
|
|
{
|
|
}
|
|
};
|
|
|
|
}
|