V8 API Reference, 7.2.502.16 (for Deno 0.2.4)
property-sequences.h
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/globals.h"
11 
12 namespace v8 {
13 namespace internal {
14 
15 class UnicodePropertySequences : public AllStatic {
16  public:
17  static const uc32 kEmojiFlagSequences[];
18 
19  static const uc32 kEmojiTagSequences[];
20  static const uc32 kEmojiZWJSequences[];
21 };
22 
23 } // namespace internal
24 } // namespace v8
25 
26 #endif // V8_INTL_SUPPORT
27 
28 #endif // V8_REGEXP_PROPERTY_SEQUENCES_H_
Definition: libplatform.h:13