tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

property-sequences.h (670B)


      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 "irregexp/RegExpShim.h"
     11 
     12 namespace v8 {
     13 namespace internal {
     14 
     15 class UnicodePropertySequences : public AllStatic {
     16 public:
     17  static const base::uc32 kEmojiFlagSequences[];
     18  static const base::uc32 kEmojiTagSequences[];
     19  static const base::uc32 kEmojiZWJSequences[];
     20 };
     21 
     22 }  // namespace internal
     23 }  // namespace v8
     24 
     25 #endif  // V8_INTL_SUPPORT
     26 
     27 #endif  // V8_REGEXP_PROPERTY_SEQUENCES_H_