attributeValueSpans property
LinkedHashMap<Object, FileSpan> ?
get
attributeValueSpans
If sourceSpan is available, this contains the spans of each attribute's
value. Unlike attributeSpans, this span will include only the value.
For example, the value span of "attr" in <a attr="value">
would be the
text value
.
Implementation
LinkedHashMap<Object, FileSpan>? get attributeValueSpans {
_ensureAttributeSpans();
return _attributeValueSpans;
}