llvm/lldb/source/Utility/RegularExpression.cpp

//===-- RegularExpression.cpp ---------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#include "lldb/Utility/RegularExpression.h"

#include <string>

usingnamespacelldb_private;

RegularExpression::RegularExpression(llvm::StringRef str,
                                     llvm::Regex::RegexFlags flags)
    :{}

RegularExpression::RegularExpression(const RegularExpression &rhs)
    :{}

bool RegularExpression::Execute(
    llvm::StringRef str,
    llvm::SmallVectorImpl<llvm::StringRef> *matches) const {}

bool RegularExpression::IsValid() const {}

llvm::StringRef RegularExpression::GetText() const {}

llvm::Error RegularExpression::GetError() const {}