chromium/v8/src/regexp/gen-regexp-special-case.cc

// Copyright 2020 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include <fstream>
#include <iomanip>
#include <iostream>
#include <sstream>

#include "src/base/strings.h"
#include "src/regexp/special-case.h"

namespace v8 {
namespace internal {

static const base::uc32 kSurrogateStart =;
static const base::uc32 kSurrogateEnd =;
static const base::uc32 kNonBmpStart =;

// The following code generates "src/regexp/special-case.cc".
void PrintSet(std::ofstream& out, const char* name,
              const icu::UnicodeSet& set) {}

void PrintSpecial(std::ofstream& out) {}

void WriteHeader(const char* header_filename) {}

}  // namespace internal
}  // namespace v8

int main(int argc, const char** argv) {}