diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /js/src/vm/UnicodeNonBMP.h | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'js/src/vm/UnicodeNonBMP.h')
-rw-r--r-- | js/src/vm/UnicodeNonBMP.h | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/js/src/vm/UnicodeNonBMP.h b/js/src/vm/UnicodeNonBMP.h new file mode 100644 index 000000000..6cc64cde4 --- /dev/null +++ b/js/src/vm/UnicodeNonBMP.h @@ -0,0 +1,41 @@ +/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- + * vim: set ts=8 sts=4 et sw=4 tw=99: + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +/* Generated by make_unicode.py DO NOT MODIFY */ +/* Unicode version: 9.0.0 */ + +#ifndef vm_UnicodeNonBMP_h +#define vm_UnicodeNonBMP_h + +#define FOR_EACH_NON_BMP_LOWERCASE(macro) \ + macro(0x10400, 0x10427, 0xd801, 0xdc00, 0xdc27, 40) \ + macro(0x104b0, 0x104d3, 0xd801, 0xdcb0, 0xdcd3, 40) \ + macro(0x10c80, 0x10cb2, 0xd803, 0xdc80, 0xdcb2, 64) \ + macro(0x118a0, 0x118bf, 0xd806, 0xdca0, 0xdcbf, 32) \ + macro(0x1e900, 0x1e921, 0xd83a, 0xdd00, 0xdd21, 34) + +#define FOR_EACH_NON_BMP_UPPERCASE(macro) \ + macro(0x10428, 0x1044f, 0xd801, 0xdc28, 0xdc4f, -40) \ + macro(0x104d8, 0x104fb, 0xd801, 0xdcd8, 0xdcfb, -40) \ + macro(0x10cc0, 0x10cf2, 0xd803, 0xdcc0, 0xdcf2, -64) \ + macro(0x118c0, 0x118df, 0xd806, 0xdcc0, 0xdcdf, -32) \ + macro(0x1e922, 0x1e943, 0xd83a, 0xdd22, 0xdd43, -34) + +#define FOR_EACH_NON_BMP_CASE_FOLDING(macro) \ + macro(0x10400, 0x10427, 0xd801, 0xdc00, 0xdc27, 40) \ + macro(0x104b0, 0x104d3, 0xd801, 0xdcb0, 0xdcd3, 40) \ + macro(0x10c80, 0x10cb2, 0xd803, 0xdc80, 0xdcb2, 64) \ + macro(0x118a0, 0x118bf, 0xd806, 0xdca0, 0xdcbf, 32) \ + macro(0x1e900, 0x1e921, 0xd83a, 0xdd00, 0xdd21, 34) + +#define FOR_EACH_NON_BMP_REV_CASE_FOLDING(macro) \ + macro(0x10428, 0x1044f, 0xd801, 0xdc28, 0xdc4f, -40) \ + macro(0x104d8, 0x104fb, 0xd801, 0xdcd8, 0xdcfb, -40) \ + macro(0x10cc0, 0x10cf2, 0xd803, 0xdcc0, 0xdcf2, -64) \ + macro(0x118c0, 0x118df, 0xd806, 0xdcc0, 0xdcdf, -32) \ + macro(0x1e922, 0x1e943, 0xd83a, 0xdd22, 0xdd43, -34) + +#endif /* vm_UnicodeNonBMP_h */ |