nameOffset property

  1. @override
int nameOffset
inherited

The offset of the name of this element in the file that contains the declaration of this element, or -1 if this element is synthetic, does not have a name, or otherwise does not have an offset.

Implementation

@override
int get nameOffset => _nameOffset;
void nameOffset=(int offset)
inherited

Sets the offset of the name of this element in the file that contains the declaration of this element.

Implementation

set nameOffset(int offset) {
  _nameOffset = offset;
}