V8 Project
v8::internal::IdentifierStart Struct Reference

#include <char-predicates.h>

+ Collaboration diagram for v8::internal::IdentifierStart:

Static Public Member Functions

static bool Is (uc32 c)
 

Detailed Description

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

Member Function Documentation

◆ Is()

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

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

26  {
27  switch (c) {
28  case '$': case '_': case '\\': return true;
29  default: return unibrow::Letter::Is(c);
30  }
31  }
static bool Is(uchar c)
Definition: unicode.cc:658

References unibrow::Letter::Is().

Referenced by v8::internal::IdentifierPart::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: