enclosingElement property

  1. @Deprecated('Use enclosingElement3 instead')
  2. @override
Element get enclosingElement
inherited

Return the element that either physically or logically encloses this element. This will be null if this element is a library because libraries are the top-level elements in the model.

Implementation

@Deprecated('Use enclosingElement3 instead')
@override
Element get enclosingElement => super.enclosingElement2!;
set enclosingElement (Element? element)
inherited

Set the enclosing element of this element to the given element.

Implementation

set enclosingElement(Element? element) {
  _enclosingElement = element as ElementImpl?;
}