describe property

String describe

Implementation

String get describe {
  var span = this.span;
  if (span == null) {
    return message;
  }

  var start = span.start;
  return '${start.line + 1}:${start.column + 1}:$message';
}