
There are a couple of minor nuances with parsing script values, compared to other properties. In Scripts.txt, the UCD file lists the full name of each script; other properties, like General Category, list the shorter name in their primary files. This means that the aliases listed in PropertyValueAliases.txt are reversed for script values.
23 lines
358 B
C++
23 lines
358 B
C++
/*
|
|
* Copyright (c) 2021, Tim Flynn <trflynn89@pm.me>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Types.h>
|
|
|
|
namespace Unicode {
|
|
|
|
enum class Condition;
|
|
enum class GeneralCategory : u64;
|
|
enum class Locale;
|
|
enum class Property : u64;
|
|
enum class Script;
|
|
enum class WordBreakProperty;
|
|
|
|
struct SpecialCasing;
|
|
struct UnicodeData;
|
|
|
|
}
|