Files
ladybird/Libraries/LibJS/Runtime/RegExpConstructor.h
Andreas Kling e243e146de LibJS+LibRegex: Switch RegExp over to the Rust engine
Switch LibJS `RegExp` over to the Rust-backed `ECMAScriptRegex` APIs.

Route `new RegExp()`, regex literals, and the RegExp builtins through
the new compile and exec APIs, and stop re-validating patterns with the
deleted C++ parser on the way in. Preserve the observable error
behavior by carrying structured compile errors and backtracking-limit
failures across the FFI boundary. Cache compiled regex state and named
capture metadata on `RegExpObject` in the new representation.

Use the new API surface to simplify and speed up the builtin paths too:
share `exec_internal`, cache compiled regex pointers, keep the legacy
RegExp statics lazy, run global replace through batch `find_all`, and
optimize replace, test, split, and String helper paths. Add regression
tests for those JavaScript-visible paths.
2026-03-27 17:32:19 +01:00

61 lines
2.2 KiB
C++

/*
* Copyright (c) 2020, Matthew Olsson <mattco@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <LibJS/Runtime/NativeFunction.h>
#include <LibJS/Runtime/RegExpLegacyStaticProperties.h>
namespace JS {
class RegExpConstructor final : public NativeFunction {
JS_OBJECT(RegExpConstructor, NativeFunction);
GC_DECLARE_ALLOCATOR(RegExpConstructor);
public:
virtual void initialize(Realm&) override;
virtual ~RegExpConstructor() override = default;
virtual ThrowCompletionOr<Value> call() override;
virtual ThrowCompletionOr<GC::Ref<Object>> construct(FunctionObject& new_target) override;
ThrowCompletionOr<GC::Ref<Object>> construct_impl(FunctionObject& new_target, bool pattern_is_regexp);
RegExpLegacyStaticProperties& legacy_static_properties() { return m_legacy_static_properties; }
private:
explicit RegExpConstructor(Realm&);
virtual bool has_constructor() const override { return true; }
JS_DECLARE_NATIVE_FUNCTION(escape);
JS_DECLARE_NATIVE_FUNCTION(symbol_species_getter);
JS_DECLARE_NATIVE_FUNCTION(input_getter);
JS_DECLARE_NATIVE_FUNCTION(input_alias_getter);
JS_DECLARE_NATIVE_FUNCTION(input_setter);
JS_DECLARE_NATIVE_FUNCTION(input_alias_setter);
JS_DECLARE_NATIVE_FUNCTION(last_match_getter);
JS_DECLARE_NATIVE_FUNCTION(last_match_alias_getter);
JS_DECLARE_NATIVE_FUNCTION(last_paren_getter);
JS_DECLARE_NATIVE_FUNCTION(last_paren_alias_getter);
JS_DECLARE_NATIVE_FUNCTION(left_context_getter);
JS_DECLARE_NATIVE_FUNCTION(left_context_alias_getter);
JS_DECLARE_NATIVE_FUNCTION(right_context_getter);
JS_DECLARE_NATIVE_FUNCTION(right_context_alias_getter);
JS_DECLARE_NATIVE_FUNCTION(group_1_getter);
JS_DECLARE_NATIVE_FUNCTION(group_2_getter);
JS_DECLARE_NATIVE_FUNCTION(group_3_getter);
JS_DECLARE_NATIVE_FUNCTION(group_4_getter);
JS_DECLARE_NATIVE_FUNCTION(group_5_getter);
JS_DECLARE_NATIVE_FUNCTION(group_6_getter);
JS_DECLARE_NATIVE_FUNCTION(group_7_getter);
JS_DECLARE_NATIVE_FUNCTION(group_8_getter);
JS_DECLARE_NATIVE_FUNCTION(group_9_getter);
RegExpLegacyStaticProperties m_legacy_static_properties;
};
}