mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-20 08:03:21 +00:00
19 lines
290 B
C
19 lines
290 B
C
![]() |
/*
|
||
|
* Copyright (c) 2021, Ali Mohammad Pur <mpfard@serenityos.org>
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "Forward.h"
|
||
|
|
||
|
namespace regex {
|
||
|
|
||
|
class Optimizer {
|
||
|
public:
|
||
|
static void append_alternation(ByteCode& target, ByteCode& left, ByteCode& right);
|
||
|
};
|
||
|
|
||
|
}
|