isIdentifierStart static method

bool isIdentifierStart(
  1. int c
)

Implementation

static bool isIdentifierStart(int c) {
  return isIdentifierStartExpr(c) || c == 45 /*-*/;
}