isCustomIdent static method
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);
}