#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 = …;
void PrintSet(std::ofstream& out, const char* name,
const icu::UnicodeSet& set) { … }
void PrintSpecial(std::ofstream& out) { … }
void WriteHeader(const char* header_filename) { … }
}
}
int main(int argc, const char** argv) { … }