describeVerbal method

String describeVerbal()

Describe the operator in spoken English (short).

Example: '&&' is described as 'and'

Implementation

String describeVerbal() {
  switch (this) {
    case DartBlockBooleanOperator.and:
      return 'and';
    case DartBlockBooleanOperator.or:
      return 'or';
  }
}