V8 Project
v8::internal::WhiteSpace Struct Reference

#include <char-predicates.h>

+ Collaboration diagram for v8::internal::WhiteSpace:

Static Public Member Functions

static bool Is (uc32 c)
 

Detailed Description

Definition at line 48 of file char-predicates.h.

Member Function Documentation

◆ Is()

static bool v8::internal::WhiteSpace::Is ( uc32  c)
inlinestatic

Definition at line 49 of file char-predicates.h.

49  {
50  return c == 0x0009 || // <TAB>
51  c == 0x000B || // <VT>
52  c == 0x000C || // <FF>
53  c == 0xFEFF || // <BOM>
54  // \u0020 and \u00A0 are included in unibrow::WhiteSpace.
56  }
static bool Is(uchar c)
Definition: unicode.cc:733

References unibrow::WhiteSpace::Is().

Referenced by v8::internal::WhiteSpaceOrLineTerminator::Is().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

The documentation for this struct was generated from the following file: