isIdentifierPart static method

bool isIdentifierPart(
  1. int c
)

Implementation

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