isCustomIdent static method

bool isCustomIdent(
  1. String token
)

Implementation

static bool isCustomIdent(String token) {
  if (token.isEmpty) return false;
  final String lower = token.toLowerCase();
  if (lower == 'auto' || lower == 'span') return false;
  return _customIdentRegExp.hasMatch(token);
}