| Index: src/unicode.h
|
| diff --git a/src/unicode.h b/src/unicode.h
|
| index d4c66f4401cec27a4cc63a5a2efe83cf0947c95c..fc4003d32395bdeeeb2546a5641bb3550f3cf8a2 100644
|
| --- a/src/unicode.h
|
| +++ b/src/unicode.h
|
| @@ -238,24 +238,28 @@ struct ConnectorPunctuation {
|
| static bool Is(uchar c);
|
| };
|
| struct ToLowercase {
|
| + static const int kMaxWidth = 3;
|
| static int Convert(uchar c,
|
| uchar n,
|
| uchar* result,
|
| bool* allow_caching_ptr);
|
| };
|
| struct ToUppercase {
|
| + static const int kMaxWidth = 3;
|
| static int Convert(uchar c,
|
| uchar n,
|
| uchar* result,
|
| bool* allow_caching_ptr);
|
| };
|
| struct Ecma262Canonicalize {
|
| + static const int kMaxWidth = 1;
|
| static int Convert(uchar c,
|
| uchar n,
|
| uchar* result,
|
| bool* allow_caching_ptr);
|
| };
|
| struct Ecma262UnCanonicalize {
|
| + static const int kMaxWidth = 4;
|
| static int Convert(uchar c,
|
| uchar n,
|
| uchar* result,
|
|
|