label property

  1. @override
SimpleIdentifierImpl? label
override

Return the label associated with the statement, or null if there is no label.

Implementation

@override
SimpleIdentifierImpl? get label => _label;
void label=(SimpleIdentifierImpl? identifier)

Implementation

set label(SimpleIdentifierImpl? identifier) {
  _label = _becomeParentOf(identifier);
}