isSpecial static method

bool isSpecial(
  1. int c
)

Implementation

static bool isSpecial(int c) =>
    c == CC_RPAREN ||
    c == CC_LPAREN ||
    c == CC_MINUS ||
    c == CC_UNDERSCORE ||
    c == CC_PERIOD ||
    c == CC_QUOTE ||
    c == CC_SPACE;