selectorType property

SelectorType selectorType

Implementation

SelectorType get selectorType => arguments.isEmpty
    ? SelectorType.unary
    : selectorToken.first.value.endsWith(':')
        ? SelectorType.keyword
        : SelectorType.binary;