1 // Copyright 2018 the V8 project authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #ifndef V8_REGEXP_PROPERTY_SEQUENCES_H_ 6 #define V8_REGEXP_PROPERTY_SEQUENCES_H_ 7 8 #ifdef V8_INTL_SUPPORT 9 10 #include "src/base/strings.h" 11 #include "src/common/globals.h" 12 13 namespace v8 { 14 namespace internal { 15 16 class UnicodePropertySequences : public AllStatic { 17 public: 18 static const base::uc32 kEmojiFlagSequences[]; 19 static const base::uc32 kEmojiTagSequences[]; 20 static const base::uc32 kEmojiZWJSequences[]; 21 }; 22 23 } // namespace internal 24 } // namespace v8 25 26 #endif // V8_INTL_SUPPORT 27 28 #endif // V8_REGEXP_PROPERTY_SEQUENCES_H_ 29