uri property

  1. @override
StringLiteralImpl? uri
override

Return the URI of the library that the containing compilation unit is part of, or null if no URI was given (typically because a library name was provided).

Implementation

@override
StringLiteralImpl? get uri => _uri;
void uri=(StringLiteralImpl? uri)

Implementation

set uri(StringLiteralImpl? uri) {
  _uri = _becomeParentOf(uri);
}