isIdentifierPart static method

bool isIdentifierPart(
  1. int c
)

Implementation

static bool isIdentifierPart(int c) =>
    isIdentifierPartExpr(c) || c == 45 /*-*/;