}
// .class
if (StringUtilities.startsWithChar(text, '.')) {
int nameOffset = offset + 1;
String className = text.substring(1, text.length());
return new AngularHasClassSelectorElementImpl(className, nameOffset);
}
// tag[attribute]
if (StringUtilities.endsWithChar(text, ']')) {
int index = StringUtilities.indexOf1(text, 0, '[');
if (index != -1) {